// this alls are truthy values including empty object and array,
// excluding empty string (empty string is falsy value)
if ([]) {
console.log('✅ This runs');
}
if ({}) {
console.log('✅ This runs');
}
if (true) {
console.log('✅ This runs');
}
if ('test') {
console.log('✅ This runs');
}