Found 6685 Articles for Javascript

How to validate email address in JavaScript?

Shubham Vora
Updated on 31-Oct-2022 11:04:59

20K+ Views

In this tutorial, we will learn how to validate an email address using JavaScript. A computer network's electronic mailbox, often known as an email address, is used to send and receive messages. All email addresses have the same format as in the 1980s. The email validation process checks to see if an email address is deliverable and legitimate. It quickly executes an algorithm that detects different typos and also whether there are deliberate misdirection or innocent errors. It verifies like Gmail or Yahoo if a certain email address is registered with such reputable domain or not. This increases the effectiveness ... Read More

How can I convert the arguments object to an array in JavaScript?

Shubham Vora
Updated on 12-Jul-2022 13:56:01

827 Views

This tutorial teaches us to convert the arguments object to array in JavaScript. Before we proceed with the tutorial, let’s look at the arguments object. In JavaScript, every function contains the ‘arguments’ object. It includes the values of all arguments we passed while calling or invoking the function.It is very similar to an array, but it is not an actual array.The ‘arguments’ object has a length property, and we can use it to know how many arguments are passed during the function call.We can access all values of the ‘arguments’ object like an array index property. For example, arguments[0] give ... Read More

How to use typeof with arguments in JavaScript?

Sravani S
Updated on 09-Jan-2020 06:28:04

674 Views

Arguments object is the arguments passed to a function. It is a variable accessible for all functions. Let’s say two arguments are passed to a function, then you can access them like the following:arguments[0] arguments[1]In the same way, you can use a type of with arguments in JavaScript. Firstly, let’s see how to work with the type of. The type of operator is a unary operator that is placed before its single operand, which can be of any type. ExampleThe following code shows how to implement type of operatorLive Demo                    var ... Read More

What is arguments object in JavaScript?

Priya Pallavi
Updated on 08-Jan-2020 11:02:11

159 Views

Arguments object in JavaScript is an object, which represents the arguments to the function executing. Its syntax has two arguments:[function.]arguments[p]ExampleYou can try to run the following code to learn what are arguments object in JavaScriptLive Demo                    function functionArgument(val1, val2, val3) {             var res = "";             res += "Expected Arguments: " + functionArgument.length;             res += "";             res += "Current Arguments : " + arguments.length;             res += "";             res += "Each argument = "             for (p = 0; p < arguments.length; p++) {                res += "";                res += functionArgument.arguments[p];                res += " ";             }             document.write(res);          }          functionArgument(20, 50, 80, "Demo Text!","Hello World", new Date())          

How to register events in JavaScript?

Shubham Vora
Updated on 06-Sep-2022 14:06:20

2K+ Views

The interaction between HTML and JavaScript is handled through events. When a user accomplishes some action on the page, an event occurs. In this tutorial, we will learn how to register events in JavaScript. Let’s move forward to discuss this further. Using Inline Event Handlers Added as HTML Tag Attributes Here, we shall learn how this standard event registration works. Adding events to the DOM attribute is a regular practice. But this is a worse approach. Extending and maintaining the code becomes difficult as HTML and JavaScript come together. Second, if the code loads late when the user interacts with ... Read More

How can I save HTML locally with JavaScript?

Shubham Vora
Updated on 14-Jul-2022 12:19:53

4K+ Views

This tutorial teaches us to save HTML locally with JavaScript.What is local storage?Local storage means storing content inside your web browser locally. It means it takes space on your computer to store the content rather than storing it on the server of the web application. It is one kind of web API that contains all browsers by default.Local storage generally stores the application data, user’s secession data, authentication token, and many other things. Before HTML5, developers used cookies to store the HTML content locally, but now every browser has local storage.Also, cookies only allow storage of a maximum of 4kb ... Read More

How to show a foreach loop using a flow chart in JavaScript?’

Srinivas Gorla
Updated on 30-Jul-2019 22:30:21

917 Views

The following shows foreach loop using flow chart:

How to use OR condition in a JavaScript IF statement?

Abhinanda Shri
Updated on 19-Sep-2019 08:07:16

4K+ Views

To use OR condition in JavaScript IF statement, use the || operator i.e Logical OR operator. If any of the two operands are non-zero, then the condition becomes true.Here’s how you can use the operator || in JavaScriptExampleLive Demo                    var a = true;          var b = false;          document.write("(a || b) => ");          result = (a || b);          document.write(result);          

What is for each...in a statement in JavaScript?

Nikitha N
Updated on 16-Jun-2020 06:56:09

91 Views

The for each...in loop iterates a variable overall value of the properties of objects. Note − The “for…each..in” is now deprecated. Do not use. SyntaxHere’s the syntax −for each (variablename in object) {    statement or block to execute }ExampleHere’s an example, which will not run on any of the web browsers, since “for each..in” is now deprecated −                    var myObj = {myProp1:30, myProp2: 40};          var sum = 0;          for each (var value in myObj) {             sum += value;          }          document.write(sum);          

How to edit a JavaScript alert box title?

Vrundesha Joshi
Updated on 08-Jan-2020 10:57:06

6K+ Views

It’s not possible to edit a JavaScript alert box title due to security issues. Still, to edit an alert box to work it all web browsers, use custom JavaScript Modal Dialogs or jQuery plugins.You can also use a custom alert box like Sweet Alert to get a custom alert box, with a title of your choice:

Advertisements