JS Interview #23: Array.splice
How many times can you splice the array in JavaScript? . . . . . . . . . . . . . . . . Let鈥檚 start with the definition of splice....
How many times can you splice the array in JavaScript? . . . . . . . . . . . . . . . . Let鈥檚 start with the definition of splice....
Let鈥檚 try to apply a generic toString function to a regular JavaScript array. What鈥檚 the output? . . . . . . . . . . . . . ....
How does the ISO date look in JavaScript? What will be logged to the console? . . . . . . . . . . . . . . ....
What鈥檚 the sum of an empty object and an empty array in JS? Is there any length to be found? . . . . . . . . . ....
Can you catch the Promise rejection in JS? Another unhandled rejection? . . . . . . . . . . . . . . . . In JS, it鈥檚 impossible to catch the unhandled promise rejection using the regular try/catch blocks....
Can you add booleans in JS? Is something false here? What will be logged to the screen? . . . . . . . . . . . . ....
Is the sum of two arrays equal to false? . . . . . . . . . . . . . . . . To analyze this code snippet we need to understand how type conversion works in JS....
What鈥檚 the type of Not a Number? . . . . . . . . . . . . . . . . In JavaScript, NaN means Not a Number. This is a special value that appears whenever JS can鈥檛 make sense of the numerical expression....
Can we use an arrow function as a getter in JavaScript? What鈥檚 going on and what will be logged to the console? . . . . . . . ....
JavaScript math is weird. What鈥檚 the output? True or false? . . . . . . . . . . . . . . . . . . Inside the computer, all numbers are stored in the Binary Number System....