Closed Nalini1998 closed 1 year ago
The following examples store Boolean objects in o:
script.js
// equivalent to const o = new Boolean(true) const o = new Object(true);
// equivalent to const o = new Boolean(false) const o = new Object(Boolean());
The following examples store Boolean objects in o:
script.js
script.js