Question-1: How many types of JavaScript Falsy and Truthy Values and what are they? Ans: In JavaScript, there were 5 types of Falsy Values, 0, “”, NaN, null, undefined. these are by default give a false and All of the components are JavaScript truthy values example: “high”, ‘0’, (empty function),{empty object},[empty array] Question-2: What are the different Null and undefined. Ans: In short Null means an empty or nonexistent value. Null is…