JavaScript Truthy Values: In JavaScript, a truthy value is considered true when encountered in boolean. Truthy Values: Without zero (0) any number is truthy value. Without Empty String (“”) any string value is truthy value. Any Empty Array [ ] is truthy value. Any Empty Object { } is truthy value. JavaScript Falsy Values: In JavaScript…