1. Falsy and Truthy : Falsy values are those that are considered false and Truthy values are those that are considered true in JavaScript. Boolean : true is Truthy and false is Falsy. Number: 0,-0, NaN are Falsy and +Infinity, -Infinity and all other numbers are Truthy. Null and undefined: Both Null and undefined are…