Skip to main content

20 docs tagged with "javascript"

View all tags

Adding Flow

Learn how to add Flow, a static type checker, to your Create React App, empowering your code with type safety and bug prevention.

History of JavaScript

JavaScript has a rich history that dates back to the early days of the web. Learn about the origins of JavaScript, its evolution, and how it has become one of the most popular programming languages in the world.

Hoisting in JavaScript

Learn about hoisting in JavaScript and how it affects variable declarations and function definitions.

Importing Components in React

Learn how to import components in your React applications. Unleash the magic of component importation and integrate them into your app with ease!

JavaScript Versions

JavaScript has gone through numerous updates and improvements since its inception in 1995. These updates are officially known as ECMAScript (ES) versions, named after the standard maintained by ECMA International. Understanding these versions and their features is crucial for anyone looking to master JavaScript. Let's explore each significant version of JavaScript, what they introduced, and how they transformed the language.

Null Data Type in JavaScript

Learn about the null data type in JavaScript, how to create null values, and common operations with null values.

Numbers in JavaScript

Learn about the number data type in JavaScript, how to create number values, and common operations with number values.

Time Complexity

Time Complexity is a measure of the amount of time an algorithm takes to solve a problem as a function of the size of the input to the problem. It is commonly estimated by counting the number of elementary operations performed by the algorithm, where an elementary operation takes a fixed amount of time to perform.

Variable Declarations

Learn how to declare variables in JavaScript using the var, let, and const keywords.

Variable Naming Rules

Learn about the rules and best practices for naming variables in JavaScript, including naming conventions, reserved words, and case sensitivity.

What is JavaScript?

JavaScript is a high-level, interpreted programming language that is widely used for front-end web development. It is a versatile language that can be used for a variety of purposes, including building interactive websites, web applications, and server-side applications.