
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 6710 Articles for Javascript

153 Views
What is JavaScript? JavaScript is a programming and Scripting language which users can use to add functionalities to different webpages. Developers can make interactive webpages add maps, images, and do a lot of other things. JavaScript came to be known as LiveScript when launched later Netscape changed its name to JavaScript. JavaScript is usually to develop the frontend but backend programming can also be done. Price Plans of JavaScript JavaScript is free to use and developers can develop interactive webpages using the language Why JavaScript alternatives? There are many disadvantages of JavaScript and some of them can be found here ... Read More

117 Views
In this problem, we require to determine the minimal cost to make the string’s left and right rotation same. Here is the observation which we will use to solve the problem. All characters should be equal for strings with odd lengths to make the left and right rotations the same. The string with an even length should have characters same at the even and odd indexes. Problem statement – We have a string of size N containing the different characters. We need to determine the minimum cost to make the left and right rotations of the given ... Read More

494 Views
While venturing into the world of web development, it is important to start with languages that are basic and foundations for other languages. Languages used for developing web, are all important, thus, developers can often find themselves stumbling upon this question. In this article, we will look into each of these languages and what are the prerequisites for each. Understanding HTML & CSS Web pages available on the internet are built with the help of HTML and made to match the aesthetics with the help of CSS. HTML offers websites a skeleton for their content. Content here could include images, ... Read More

705 Views
Since a website created with HTML, CSS, and JS is created entirely from code, it gives greater flexibility and customization choices. Design and functionality are entirely at the developers' hands, which makes it perfect for challenging or distinctive projects. However, WordPress streamlines the procedure with pre-made plugins and templates, making it appropriate for quick installs and non-technical users. However, for highly customised requirements, it could be restrictive. The decision ultimately comes down to the exact requirements, the developers' level of experience, and the degree of control desired over the look and feel of the website. Whats is HTML/CSS/JS? The fundamental ... Read More

1K+ Views
In the domain of web improvement, three critical advances expect essential parts in making natural and obviously captivating destinations: HTML (Hypertext Markup Language), JavaScript, and CSS (Streaming Formats). All of these developments fills a specific need, but they are significantly interconnected and coordinate genially to build the state of the art web understanding. This article researches the association between HTML, JavaScript, and CSS, uncovering understanding into their particular capacities, how they work together with one another, and why their agreeable energy is vital for productive web progression. HTML: The Structure of Web Content Web content is built on HTML (Hypertext ... Read More

602 Views
The secret to making a dynamic and engaging website is the integration of HTML and JavaScript, A skill important for the developers. The static web pages of HTML are no doubt popular and a stepping stone for beginners, but dynamic and engaging web pages are the ones users prefer. To be able to interact with the website and consume its content is an experience only dynamic web pages can provide. Integration of JavaScript code into an HTML page is a vital skill for web developers. JavaScript is a potent scripting language that allows developers to add dynamic functionality and interaction ... Read More

2K+ Views
Child Node A node that is immediately nested inside another node in a document tree or DOM (Document Object Model) tree is referred to as a child node in JavaScript. Child nodes are in specific HTML elements, text nodes, and comment nodes that are nestled inside of other HTML elements when working with HTML documents. Method 1: Using the childNodes Property Utilizing the childNodes property is one method of counting child components. The NodeList of all child nodes, including text nodes and remarks, is returned by this property. We can loop through the NodeList and examine each node's nodeType property ... Read More

15K+ Views
An HTML page can be converted into a PDF file using JavaScript tools like jsPDF or html2pdf.js. These libraries make it easier to generate PDF files directly from web page HTML text. Users will have the choice to download or save the finished PDF when the HTML elements and their corresponding styles have been captured and converted to PDF format. One may easily enable this functionality and provide the convenience of printable, offline content representation by inserting necessary JavaScript code into the web application. This functionality is useful for producing reports, producing printable versions of web material, and giving consumers ... Read More

2K+ Views
The Internet, which gives a colossal determination of sites going from direct static pages to unpredictable web applications, has changed how we communicate with data and administrations. Behind the stylishly lovely UIs and intuitive components are three fundamental web innovations: HTML, CSS, and JavaScript. For those inquisitive about how these innovative marvels work, getting to a site's source code can be a tomfoolery experience. We'll walk you through each move toward this instructional exercise on the most proficient method to get to the HTML, CSS, and JavaScript source code utilizing the implicit designer apparatuses in your internet browser. Methods Used ... Read More

2K+ Views
ASCII, stands for American Standard Code for Information Interchange which is a method used for encoding characters by assigning them to a specific numerical value. The numerical values thus assigned are known as ASCII codes and are extensively utilized in computer systems to represent various characters including letters, numbers, punctuation marks, and special control characters. Example 1: Using charCodeAt() The following code illustrates a program to receive input character from the user using the ‘charCodeAt()’ function and then display the corresponding ASCII code for that character. Syntax string.charCodeAt(index) Algorithm Step 1 :Start with declaring the HTML tag. Step ... Read More