Java Script
Java Script JavaScript is the most widely used scripting language on earth. Here are some examples of key syntax patterns in JavaScript. Argument Example The arguments object is an array-like object (in that the structure of the object is similar to that of an array; however it should not be considered an array as it has all the functionality of an object) that stores all of the arguments that you passed to a function and is proprietary to that function in particular. If you were to pass 3 arguments to a function, say storeNames() , those 3 arguments would be stored inside an object called arguments and it would look like this when we pass the arguments storeNames("Mulder", "Scully", "Alex Krycek") to our function: First, we declare a function and make it return the arguments object. function storeNames ( ) { return arguments ; } Then, when we execute that function with n arguments , 3 in this case, it wi...