Q.1.
Does V8 have a REPL mode?
Q.2.
What type of application is V8?
Q.3.
What is the name of the first JS Engine?
Q.4.
What is the name of Chrome's JS Interpreter Engine?
Q.5.
Which of the following JS engines have been used inside MongoDB for it to understand JSON commands?
Q.6.
What are the JS Engines corresponding to the Browsers?[IOS/Safari, Firefox, IE]
Q.7.
Use gzip compression...
Q.8.
Why secure HTTP headers?
Q.9.
PM2 is...
Q.10.
Which of these will make an outline or line thicker?
Q.11.
Which are the division sign, multiplication sign, and comment sign in JavaScript? (In order)
Q.12.
[a, b, ...rest] = [50];console.log(rest);
Q.13.
Function checkFun(a, b, c){ console.log(this); console.log(a); console.log(b); console.log(c);}checkFun.apply(1,[2,3,4]);
Q.14.
Var func = function() { console.log(this)}.bind(1);func();
Q.15.
Const o = {p:q: true};const {p: foo, q: bar} = o;console.log(foo);
Q.16.
Const arr = [1,2,3];[arr[2], arr[1]] = [arr[1], arr[2]];console.log(arr);
Q.17.
What is a brief description of JS?
Q.18.
Let a = 1;let b = 3;[a, b] = [b, a];console.log(a);
Q.19.
If I wanted to stop a shape at the end of thepixel wide canvas, which would be the correct code?
Q.20.
Let a, b;[a=b== [1];console.log(a); console.log(b)