Used when we want to compare two values; if two values are the same, it will return true; if not, a string will return.
const value = 'foo';
const value === 'bar' || "This value is not the same."
// This value is not the same.
const arrayNames = ["Adam", "Eva", null, ''];
const filterNames = arrayNames.filter(Boolean)
// ["Adam", "Eva"];