An Object is an individual instance of the data structure defined by a class. We define a class once and then make many objects that… Read More
Category Archives: Web Technologies
The arrayBuffer.slice is a property in JavaScript which return another arrayBuffer containing the contents of the previous arrayBuffer from beginning inclusive, to end, exclusive in… Read More
The position property in CSS tells about the method of positioning for an element or an HTML entity. There are five different types of position… Read More
We have discussed how to create components, how to render components, using proptypes, using states to store information, and much more. In our previous articles,… Read More
The strspn() function is an in-built function in PHP which finds the length of the initial segment of a string consisting entirely of characters contained… Read More
The CSS background properties are used to define the background effects for elements. There are lots of properties to design the background. CSS background properties are… Read More
The addslashes() function is an inbuilt function in PHP and it returns a string with backslashes in front of predefined characters. It does not take… Read More
str_pad: Pad a string to a certain length with another string. Syntax:- str_pad (input, pad_length, pad_string_value, pad_type) It returns the padded string. Parameters Description input:-The… Read More
Given the two strings we have to check if one string is a rotation of another string. Examples: Input : $string1 = "WayToCrack", $string2 =… Read More
The next() function is an inbuilt function in PHP and does the following operations: It is used to return the value of the next element… Read More
The array_diff_uassoc() function is a built-in function in PHP and is used to get the difference between one or more arrays using an user-defined function… Read More
JavaScript is a flexible object-oriented language when it comes to syntax. In this article, we will see the different ways to instantiate objects in JavaScript.… Read More
You are given an Array of n-elements.You have to remove the duplicate values without using any loop in PHP and print the array. Examples: Input… Read More
The JavaScript Date setDate() Method is used to set the date of a month into a date object which is created using the date() constructor. … Read More
The array_uintersect() is an inbuilt function in PHP and is used to compute the intersection of two or more arrays depending on the values. The… Read More