Don't wanna be here? Send us removal request.
Text
code to understand how "let" works in JS
var adi = function Print() {
var x = 100;
var y = 10;
if (x == 100) {
console.log("not x");
let z = 200;
var w = 500;
console.log(`${z}`)
}
//console.log("z="`${z}`)
console.log(`${w}`)
}
adi();
}
0 notes
Text
LINEAR SEARCH ON USER INPUT CHARACTER ARRAY
1 note
·
View note