shivam November 5, 2022 0

What Are Element Access Methods In Javascript?

In javascript, we have so many methods for accessing elements but, There are five important or common methods- document.getElementByid document.getElementByTageName document.getElementByClassName document.queryselector document.queryselectorall 1. Document.getElementByid The document method getElementByid() returns an element object representing the element…

shivam November 5, 2022 0

How to comment in javascript?

Javascript comments explain the code design. They can also be used to prevent the execution of a section of code if necessary. Comments are ignored while the compiler executes the…

shivam November 5, 2022 0

What is JAVASCRIPT, How to add JAVASCRIPT ?

JavaScript is object-oriented programming language which is used by several websites for scripting the webpages. It is an interpreted, full-fledged programming language that enables dynamic interactivity on websites when applied…

shivam November 2, 2022 0

How to concatenate string in PHP?

A string is a collection of characters. It offers various types of string operators and these operators have different functionalities such as string concatenation, compare values and to perform Boolean…