Category JavaScript

Variables & Types in JavaScript: A Detailed Explanation

JavaScript is a versatile language where understanding variables and types is essential. Let’s dive into the world of variables and the types they can hold, with examples to make concepts crystal clear. 1. What are Variables? Variables are containers that…

JavaScript Class

Class Class is an object oriented programming concept, in JavaScript it’s similar to a function. Classes are just a special functions added to the ES6. But they give you more power and flexibility by assigning properties to them. Constructor A…

Operator in JavaScript

JavaScript’s Operators Operators are used for JavaScript’s arithmetic, comparison, logical, assignment expressions and more. Most operators are represented by punctuation characters such as + and =, some, however, are represented by keyword such as delete and instanceof.

JavaScript’s Lexical Structure

A programming language’s lexical structure specifies set of some basic rules about how a code should be written in it. Rules like what variable names looks like, the delimiter characters for comments, and how one program statement is separated from…

JavaScript Introduction for Beginners

JavaScript, the programming language of the web, is mainly a client-side scripting language, mostly used as a part of modern web browsers. It is high-level, dynamic, and multi-paradigm in nature, supporting object–oriented, imperative and functional programming styles.