i
Introduction Of JavaScript
Setup For JavaScript
Client-side and Server-side JavaScript
JavaScript Equivalents
JavaScript Syntax
JavaScript Variables
JavaScript Expressions
JavaScript Comments
JavaScript Identifiers
JavaScript Case Sensitive
JavaScript Function Definition
JavaScript Function Expressions
JavaScript Parameters and Arguments
JavaScript Function Invocation
JavaScript Self-invoking Functions
JavaScript Objects Definitions
JavaScript Object Properties
JavaScript Object Methods
JavaScript Object Constructors
JavaScript Object Prototypes
JavaScript Object ES5 standard
Strings Definition
Backslash escape character
Strings as Objects
String Methods
indexOf() and lastIndexOf():
search()
slice()
substring()
substr()
replace()
toUpperCase()
toLowerCase()
concat()
trim()
charAt()
charCodeAt()
split()
endsWith()
fromCharCode()
includes()
repeat()
startsWith()
valueOf()
Creating an Array
Array elements
Array Properties and Methods
Changing Elements of an array
Compare function of Array
Addition vs. Concatenation
Properties and Methods
JavaScript this Function
JavaScript let Function
Reserved Words
Removed reserved words
JavaScript Properties, Methods, and Objects
Java Properties and Objects
HTML and Window Properties, Objects and Event Handlers
Comparison operators
Logical Operator
Comparing different data types
Conditional Statements
else statement
switch statement
default statement
JavaScript Loops
JavaScript break statement
Arrays are data structures that contain a group of elements. In general, all the elements in the array will be of the same data type.In JavaScript, the data type of an array is Object.
Creating an array:
Declaring/defining an array is the same as declaring/defining any other variable.
Example:
var fruits = [“Apple”, “Banana”, “Orange”];
Array can span multiple lines. It does not consider spaces and line breaks.
var fruits = [“Apple”,
“Banana”,
“Orange”];
In JavaScript, an array can also be created using the newkeyword.
var fruits = new Array (“Apple”, “Banana”, “Orange”);
Though both the above examples do the same; it is recommended not to use newsince the other way is more simple, readable, and takes lesser time for execution.
Don't miss out!