Bind executes the function it was called upon right away
True
False
Q.4.
Returns a new function whose this value is bound to the provided value.
Call
Apply
Bind
Bound
Q.5.
A function with a provided this and further arguments are provided as a comma separated list
Apply
Call
Bind
On
Q.6.
Which of the following is wrong?
var greeting = `\`Yo\` World!`;//output - `Yo` World!
var user = {name: 'World'};console.log(`Thanks for getting this into V8, ${user.name.toUpperCase()}.`); //output - Thanks for getting this into V8, WORLD.
console.log("string text line 1 \ string text line 2"); //output - string text line 1 string text line 2
Q.7.
I want to extract 'hello' and 'array' from the array using destructuring
var [greeting,name] = ["Hello", "I" , "am", "Array"];
var [greeting,,,name] =
["Hello", "I" , "am", "Array"];