xxxxxxxxxx
function myFunction(a) {
console.log(a);
}
myFunction(12);
xxxxxxxxxx
var x=21;
var myFunction = function(){
console.log(x);
var x= 20;
};
myFuntion();
xxxxxxxxxx
var f = function () {
x = x + "b";
if (x.length > 100) {
let x = "a";
}
console.log (x);
}
f ();
xxxxxxxxxx
var x= 'hi';
function myfunction()
{
console.log(x);
var x = 'hello';
}
myfunction();