Web Development Articles

Page 109 of 801

Can HTML be replaced completely with any other language?

Ayush Singh
Ayush Singh
Updated on 17-Aug-2023 487 Views

HTML cannot be totally supplanted by any other dialect of web improvement. Whereas there are elective innovations like JavaScript, CSS, and systems like Respond or Precise that improve the usefulness and plan of web pages, HTML remains the dominant markup dialect. HTML gives the basic structure, semantics, and openness essential for building web pages. It characterises the substance's progression and serves as the spine for organising data. Other dialects complement HTML by including interactivity, styling, and energetic usefulness. In any case, evacuating HTML would result in a misfortune of structure and standardised format, making it outlandish to make cohesive and ...

Read More

Can a website be solely built with HTML and CSS?

Ayush Singh
Ayush Singh
Updated on 17-Aug-2023 539 Views

HTML(Hypertext markup language) and CSS(Cascading Style sheets) are some of the tools used to develop a webpage. HTML works upon building the structure or framework of a website and CSS is known to design the webpage as per user's needs. But are these two enough to build a website? Is this duo adequate for the needs of a webpage? Depends upon the type of website, if it's a static website then these two tools are more than enough to develop it. To make a dynamic and interactive website, additional tools are required. As we discussed, HTML and CSS work upon ...

Read More

Sum of even Fibonacci terms in JavaScript

Nikitasha Shrivastava
Nikitasha Shrivastava
Updated on 16-Aug-2023 630 Views

In the given problem statement we have to calculate the sum of even fibonacci numbers with the help of Javascript functionalities. So for solving this task we will use basic functionalities of the language. Understanding the Problem The problem at hand is to calculate the sum of even fibonacci numbers or items up to the given limit of the fibonacci number. As you may know, the fibonacci sequence is a series of numbers in which every number is the sum of the two previous numbers. The series usually starts from 0 and 1. So in this problem our ...

Read More

Sum of all prime numbers in JavaScript

Nikitasha Shrivastava
Nikitasha Shrivastava
Updated on 16-Aug-2023 2K+ Views

In the given problem statement we have to compute the sum of all the prime numbers with the help of Javascript functionalities. So for calculating the sum we will set the upper limit of primes numbers. Understanding the Problem The problem is to calculate the sum of all the prime numbers up to a given limit. So the prime number is a positive integer which is greater than 1 and also these numbers do not have any divisors other than 1 and itself. For example we have a limit of the primes is 10, so the prime numbers ...

Read More

Sorting an integer without using string methods and without using arrays in JavaScript

Nikitasha Shrivastava
Nikitasha Shrivastava
Updated on 16-Aug-2023 955 Views

In the given problem statement, our task is to sort an integer number without the usage of string methods and without usage of arrays with the help of Javascript functionalities. So for solving this task we will use mathematical operations and loops in Javascript. Understanding the Problem The problem says to sort the given integer number without using the string and array method in Javascript. The question arises about sorting the integer that means we have to array its digits in ascending or descending order. For example suppose we have an integer number as 784521, so ...

Read More

Sorting according to weights of numbers in JavaScript

Nikitasha Shrivastava
Nikitasha Shrivastava
Updated on 16-Aug-2023 1K+ Views

In this problem statement, our target is to sort the given array of numbers according to the weights of numbers with the help of Javascript. At the beginning we will write a function that calculates the weights of the numbers and then sort them with another function. Understanding the Problem We have to sort the provided numbers according to their weights. As a result we will have an array of numbers. A weight of the number is defined as the sum of its own digits. For example: suppose we have an array like [19, 11, 12, 15]. We ...

Read More

Sort an integer array, keeping first in place in JavaScript

Nikitasha Shrivastava
Nikitasha Shrivastava
Updated on 16-Aug-2023 297 Views

In the given problem statement we have to sort the given integer array but we have to keep the first item in place and sort the remaining items with the help of Javascript functionalities. So we will use some predefined functions of Javascript to solve the problem. Understanding the Problem The problem at hand is to get the sorted array of integer numbers in Javascript and the main operation in this task is to keep the first item intact in its original position. Or we can say we have to rearrange the items in the array so that ...

Read More

Smallest number that is divisible by first n numbers in JavaScript

Nikitasha Shrivastava
Nikitasha Shrivastava
Updated on 16-Aug-2023 347 Views

In the above problem statement our task is to find the smallest number that is divisible by the first n numbers with the help of Javascript functionalities. So Understanding the Problem The problem at hand is to find the smallest number which is evenly divisible by the first n numbers. Or we can say that we have to look for a lowest number that can be divided by each of the numbers from 1 to n without any remainder. Logic for the given Problem For solving this problem we can use the concept of Least ...

Read More

Shortest distance between objects in JavaScript

Nikitasha Shrivastava
Nikitasha Shrivastava
Updated on 16-Aug-2023 635 Views

In this problem we have to calculate and find the shortest distance between two given objects in Javascript. So we will write a function to do this operation and also we will see its time and space complexity. We must consider the positions and coordinates of the objects in some way. Understanding the Problem The problem says to find the shortest path between the two given objects. So we will use two coordinates. And define a function which will have four parameters. These parameters will represent the x and y coordinates of the two objects. Inside the function ...

Read More

Shift strings Circular left and right in JavaScript

Nikitasha Shrivastava
Nikitasha Shrivastava
Updated on 16-Aug-2023 1K+ Views

The main objective for the problem statement is to perform a circular shift on the strings in Javascript. The circular shifts can be left shirt or right shift. And implement this solution in Javascript. Understanding the Problem The problem at hand is to shift the strings circularly left and right with the help of Javascript functionalities. Circular shifting means we have to move the characters of the given string in a circular manner in which the characters that are to be shifted beyond the boundaries of the string and it should reappear at the opposite end. ...

Read More
Showing 1081–1090 of 8,006 articles
« Prev 1 107 108 109 110 111 801 Next »
Advertisements