FrontendDeveloper.in

JavaScript question detail

What happens with negating an array

Negating an array with ! character will coerce the array into a boolean. Since Arrays are considered to be truthy So negating it will return false.

console.log(![]); // false
Back to all JavaScript questions
Get LinkedIn Premium at Rs 399