Not applicable

Hello,

Consider the below example of adding two numbers.

var a = 2;

var b = 2

var c = a+b;

If you access a value from a variable or from other places then it's not hardcoded. but if use c = 2+2; then its hardcoded one

Hope you got this.