What are the 8 fundamental Data types in JavaScript?
numbers, BigInts, strings, booleans, null, undefined, symbols, and Objects.
.
What in JavaScript has properties?
Objects, including instances of data types, can have properties that store information. The properties are denoted with a . after the name of the object, for example: ‘Hello’.length.
The console is an object which has built in methods\ actions.
Example console.log, the log is one such build in method.
The difference between Function and Method?
A method is associated with an object or datatype, while a function is not.
The 7 types of primitive data?
String, Integer, Boolean, null, undefined, Symbols and BigInts.
null vs undefined data types?
null is a value intentionally not set, undefined is a value that is absent.