random-codes
random-codes
Untitled
2 posts
Don't wanna be here? Send us removal request.
random-codes · 2 years ago
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
random-codes · 2 years ago
Text
LINEAR SEARCH ON USER INPUT CHARACTER ARRAY
Tumblr media
1 note · View note