Javascript : Guess the Output
Question
x = 23;
const x;Question
x = 23;
let x;Question
let x;
const y;
var z;
console.log(x);
console.log(y);
console.log(z);Question
Question
Question
Question
Question
Question
Question
Question
Question
Question
Question
Question
Question
Question
Question
Each time bigFunc is called, an array of size 700 is being created, Modify the code so that we don't create the same array again and again.
Question
The following code outputs 2 and 2 after waiting for one second. Modify the code to output 0 and 1 after one second.
Question
Question
Last updated