JS Interview #21: ISO Date
How does the ISO date look in JavaScript? What will be logged to the console? . . . . . . . . . . . . . . ....
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....
We鈥檙e just logging a number, what can go wrong here? . . . . . . . . . . . . . . . . . . Under the hood, there are no integers in JavaScript....
How small is Math.min() in JavaScript? . . . . . . . . . . . . . . . . . . The function Math.min() takes the variable number of arguments and returns the lowest number passed into it....