1. What is the value of an uninitialized variable
2. let digitsArray=[1,2,3,4];delete(digitsArray[2]);console.log(digitsArray.length);
3. What is the value of typeof(undefined)
4. let digits=[1,2,3,4]; digits.splice(2,1);console.log(digits.length);
5. typeof(null) = ?
6. What is the value of '5'+1
7. How '===' compares operands
8. Which of the following is chrome brower's javascript Engine
9. Are global variables allowed in strict mode?
10. Which of the following is firefox's javascript engine