Found 6685 Articles for Javascript

Difference Between textContent and innerHTML

Pradeep Kumar
Updated on 13-Jul-2023 11:00:14

216 Views

There are various methods used in web development to change the text or add additional elements to an HTML element's content. TextContent and innerHTML are two frequently used properties for changing an HTML element's content. Although these two qualities might appear to be identical, they have distinct behaviours and applications. The text content of an element and all of its descendants can be set or retrieved using the textContent attribute. Without any HTML tags, it merely provides the text information. In contrast, the innerHTML property sets or retrieves an element's HTML content, including all HTML tags and their associated ... Read More

Difference Between String Slice and Substring Methods

Pradeep Kumar
Updated on 13-Jul-2023 10:35:22

802 Views

JavaScript is a dynamic and most popular programming language which can be used on both client side and server side. JavaScript is used to create interactive web pages. It has many frameworks such as React JS, Angular JS, Node JS etc., JavaScript contains many inbuilt functions to perform various tasks. There are functions that are used to manipulate the strings. Str.slice and str.substring are two of those inbuit functions that can manipulate strings. Although the functionalities of both the functions are almost similar, there are a few differences between them String.slice() Method This method returns a part of the string ... Read More

JavaScript Program to Find Longest Common Prefix Using Word by Word Matching

Prabhdeep Singh
Updated on 12-Jul-2023 10:08:00

214 Views

Prefixes are the substrings that start from the zeroth index of the given string and can be of any size from 1 to the complete length of the string. We are given a set of strings and we have to find the common prefix among all of them in the JavaScript programming language. We have to implement the word-by-word matching approach in which we will match the words instead of the complete strings. Input arr = ["zefkefgh", "zefkdefij", "zeffdzy", "zefkdabacd"]; Output zef Explanation From all the given strings, we have the first three characters, the same and the remaining ... Read More

JavaScript Program to Find Minimum Insertions to Form a Palindrome

Prabhdeep Singh
Updated on 12-Jul-2023 10:51:42

116 Views

We are given a string and we have to find the minimum number of different character that we need to insert in the given string at any place so that the final string will be palindrome. A palindrome is a string that is just equal to the reverse of it. This problem is of dynamic programming, so we will first go for the recursive approach, then we will memorize it, and at the end we will see the tabulation of the memorization approach. Recursive ApproachExample const max = 1e5; // defining the upper limit // function to ... Read More

JavaScript Program To Write Your Own atoi()

Prabhdeep Singh
Updated on 11-Jul-2023 11:42:17

134 Views

In C programming language we have a function that takes a single string or character array as the parameter and returns an integer that may be represented by the given string, if the current string is invalid then it reads only up to the first valid index and will return that value. We will see the complete code with the explanation. Sample Examples Input 1 string S = "-9845" Output 1 -9845 Explanation We are given a string that represents a number so we have just got the same output. Input 2: string str = "90 uy78" Output 2 ... Read More

How to Run Javascript from Python?

Rohan Singh
Updated on 11-Jul-2023 13:29:36

6K+ Views

In Python, we can run Javascript using the PyExecJS library or the js2py library of Python. The PyExecJs library provides a consistent API for running JavaScript code from within Python using a variety of JavaScript engines, including Node.js, JavaScriptCore, and Google's V8 engine. The js2py library allows you to execute JavaScript code from within Python by parsing the JavaScript code and interpreting it in Python. This article will teach us how to run javascript from Python using the PyExecJS library. Method 1: Using the PyExecJS library The PyExecJs library provides a simple interface for executing JavaScript code. It allows developers ... Read More

Difference between indexOf and findIndex Function

Pradeep Kumar
Updated on 03-Jul-2023 16:21:02

386 Views

JavaScript is a dynamic programming language which can be used on both client side and server side. JavaScript is used to create interactive webpages. It has many frameworks such as React JS, Angular JS, Node JS etc. JavaScript provides some methods using which the index of the specified element can be obtained. indexOf and findIndex are those methods. The indexOf Function in JavaScript The indexOf function in JavaScript allows us to search for an element in an array and returns the first found index in that array. If it can't find the element, then -1 is returned. The syntax of ... Read More

Difference between GET and POST Request in JavaScript

Pradeep Kumar
Updated on 03-Jul-2023 16:14:50

827 Views

HTTP requests are frequently used in web development to send and receive data from a server. GET and POST queries are two of the most frequently utilised HTTP requests. It is crucial for web developers to comprehend the distinctions between these two request kinds if they wish to build apps that are both secure and effective. GET and POST requests serve different functions and have different properties. Data can be retrieved from a server using GET queries and submitted to a server using POST requests. POST requests are used for requests that alter or generate data on the server, whereas ... Read More

Working with Excel Files using Excel.js

Mukul Latiyan
Updated on 22-Jun-2023 17:26:03

3K+ Views

In order to work with the Excel.js, you need to first install the package as a dependency in your project. To install Excel.js in your project, you need to run the following command − npm install exceljs Once you run the above command, Excel.js will be installed as a dependency in your project. In all the examples used in this tutorial, we will work with "xlsx" files that are open XML spreadsheet files used in Microsoft Excel. Working on ExcelJS Cells In the example shown below, we are working with Excel sheet cells. To get a reference of a ... Read More

How to Scrape a Website using Puppeteer.js?

Mukul Latiyan
Updated on 22-Jun-2023 13:32:43

239 Views

Web scraping is one of the best ways in which one can automate the process of data collection from the web. Normally we refer to a web scraper as a "crawler" who simply surfs the web and then gives us the scraped data from the pages that we selected. There are many reasons for automating the data scraping process as it is much easier than the process of manually extracting the data from different web pages. Scraping is also a very good solution when the web page that we want to extract the data from doesn't provide us with any ... Read More

Advertisements