1JavaScript, often abbreviated as JS, is a programming language that conforms
2to the ECMAScript specification.
3JavaScript is high-level, often just-in-time compiled, and multi-paradigm.
4It has curly-bracket syntax, dynamic typing, prototype-based object-orientation,
5and first-class functions.
1JavaScript is a Object-Oriented Programming Language. It is very easy, making it high level.
1/* Spread syntax ( ex. ...arrayName) allows an iterable such as an array expression or string
2to be expanded in places where zero or more arguments (for function calls)
3elements (for array literals) are expected, or an object expression to be
4expanded in places where zero or more key-value pairs (for object literals)
5are expected. */
6
7
8//example
9function sum(x, y, z) {
10 return x + y + z;
11}
1JavaScript (JS) is a lightweight, interpreted, or just-in-time compiled
2programming language with first-class functions.
3
4While it is most well-known as the scripting language for Web pages,
5many non-browser environments also use it, such as Node.js, Apache
6CouchDB and Adobe Acrobat.
7