truthy and falsy values: truthy values mean the values that return true and falsy value means that returns false. well, let me explain by coding. values that return true are : ‘0’, ‘ ’, {}, “false” const value = ‘0’ if(value){ console.log(‘true’) }else{ console.log(‘false’) } the result will be true const emptyValue = ‘…