Found 6710 Articles for Javascript

What is the use of declaring variables in JavaScript?

Ali
Ali
Updated on 13-Jun-2020 08:27:46

168 Views

Before you use a variable in a JavaScript program, you must declare it. Variables can be thought of as named containers. You can place data into these containers and then refer to the data simply by naming the container.Variables are declared with the var keyword as follows.     You can also declare multiple variables with the same var keyword as follows −     This is also you can assign values −var rank = 2; var points = 100;

Can I use a JavaScript variable before it is declared?

Sravani Alamanda
Updated on 08-Dec-2022 09:26:07

3K+ Views

Yes, you can use a JavaScript variable before it is declared, with a technique called hoisting. The parser reads through the complete function before running it. The behavior in which a variable appears to be used before it's declared is known as hoisting. For example, the following, rank = 5; var rank; The above works the same as the following − var rank; rank = 2; Hoisting in JavaScript, allows us to declare variables, functions, or classes that are moved to the top of the scope preceding the execution of the code regardless of whether their scope ... Read More

What is the purpose of new Boolean() in JavaScript?

Johar Ali
Updated on 13-Jun-2020 08:21:10

291 Views

The Boolean object represents two values, either "true" or "false". If value parameter is omitted or is 0, -0, null, false, NaN, undefined, or the empty string (""), the object has an initial value of false.The new Boolean() is used to create a new object. Use the following syntax to create a boolean object.var val = new Boolean(value);ExampleLet us see an example of toString() method, which returns a string of either "true" or "false" depending upon the value of the object −           JavaScript toString() Method                        var flag = new Boolean(false);          document.write( "flag.toString = " + flag.toString() );          

How to declare boolean variables in JavaScript?

Amit Sharma
Updated on 13-Jun-2020 07:49:15

651 Views

A boolean variable in JavaScript has two values True or False.ExampleYou can try to run the following code to learn how to work with Boolean variables −           35 > 20       Click for result                      function myValue() {             document.getElementById("test").innerHTML = Boolean(35 > 20);          }          

How to declare String Variables in JavaScript?

Ali
Ali
Updated on 14-Sep-2023 02:41:32

30K+ Views

JavaScript is an untyped language. This means that a JavaScript variable can hold a value of any data type. To declare variables in JavaScript, you need to use the var, let, or const keyword. Whether it is a string or a number, use the var, let, or const keyword for its declaration. But for declaring a string variable we had to put the string inside double quotes or single quotes.Here’s how you can declare strings in JavaScript -var name = "David"; var subject = "Programming";ExampleYou can try to run the following code to learn how to declare strings in JavaScript ... Read More

How to declare numbers in JavaScript?

Ali
Ali
Updated on 13-Jun-2020 07:43:55

5K+ Views

JavaScript is untyped language. This means that a JavaScript variable can hold a value of any data type. To declare variables in JavaScript, you need to use the var keyword. Whether it is a number or string, use the var keyword for declaration.Here’s how you can declare numbers in JavaScript −var points = 100; var rank = 5;ExampleYou can try to run the following code to learn how to declare number in JavaScript −                                

What are the differences between JavaScript Primitive Data Types and Objects?

Johar Ali
Updated on 03-Jan-2020 09:58:13

255 Views

Before beginning with the difference, let’s learn what are Primitive Datatypes. Primitive defines immutable values and introduced recently by ECMAScript standard.JavaScript allows you to work with three primitive data types, Numbers, eg. 3, 310.20 etc.Strings of text e.g. "This text string" etc.Boolean e.g. true or false.JavaScript also defines two trivial data types, null and undefined, each of which defines only a single value. In addition to these primitive data types, JavaScript supports a composite data type known as the object.After datatypes, let us discuss about Objects:Objects In JavaScript, objects are considered a collection of properties. Identify properties using key values. It ... Read More

How to write inline JavaScript code in HTML page?

Rahul Sharma
Updated on 13-Jun-2020 07:08:11

723 Views

Inline JavaScript Code − If you are adding some JavaScript code in an HTML file without using the src tag then it is known as inline JavaScript code. That’s all you need to know.

What are the differences between inline JavaScript and External file?

Alshifa Hasnain
Updated on 13-Mar-2025 12:03:54

803 Views

The following are the differences between inline JavaScript and external files − External scripts An external JavaScript file is a separate .js file linked to an HTML document using the tag with the src attribute. The browser stores the external script once it is downloaded for the first time. If it is to be referenced again, then no additional download is needed. This reduces download time and size. The async and defer attributes have an effect. If these attributes are present the script will change the ... Read More

Is it better to have one big JavaScript file or multiple light files?

Amit Sharma
Updated on 13-Jun-2020 06:48:03

1K+ Views

To avoid multiple server requests, group your JavaScript files into one. Whatever you use for performance, try to minify JavaScript to improve the load time of the web page.If you are using single page application, then group all the scripts in a single file.If you are using multiple files, then minify all of your scripts and separate them into categories.example - Place JavaScript to be used in every page. This can be the core script of the file. - Place your plugins hereRest, add other scripts in a JavaScript file. It’s good to maintain it in different files.Read More

Advertisements