1. JavaScript is a scripting language used in web browsers. It was originally created to make web pages more interactive and dynamic.
2. The document discusses the history and evolution of JavaScript, including its origins from Scheme and Java, standardization by ECMA, and adoption by major browsers.
3. Key concepts covered include JavaScript objects, functions, and closures. Objects are fundamental data types in JavaScript along with primitives like strings and numbers. Functions are objects that can be assigned to variables or passed as arguments. Closures allow functions to access variables from outer scopes.
116. Object
Object instanceof Function=> true
Function instanceof Function => true
Array instanceof Function => true
String instanceof Function => true
Number instanceof Function => true
Boolean instanceof Function => true
RegExp instanceof Function => true
Date instanceof Function => true
...