What are the falsy values in Javascript

{ // deep_execution_view
const authorName = "Ankit Agrawal";
//
const publishDate = "December 21, 2021";

Falsy values are the values that return false.There are six falsy values in JavaScript.

Undefined A primitive value
Null Blank value
Nan Not a number
0/-0 The zero and negative zero
“” Empty string
False A false keyword
}