Skip to content

Commit b8e1a19

Browse files
committed
mcqjsday2
1 parent 9dedc64 commit b8e1a19

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

JavaScript Interview/Most Imp MCQ/chatgpt.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -500,6 +500,11 @@ console.log(value[5]);// undefined
500500
console.log(Boolean(a)); //false
501501
console.log(!a);//true
502502
console.log(!!a);// false
503+
504+
10.
505+
let a;
506+
console.log(a + 1); //NAN
507+
console.log(typeof a); //undfined
503508
*/
504509

505510

0 commit comments

Comments
 (0)