Destructuring in JavaScript// 01. Count the occurrences.// You are building a word count generator that will take a large string of text as input and output the words and the number of times they are present in the string. Your task is to write a function that can count the oc...Jan 2, 2024·4 min read
ERROR Handlingassignment solution // 1. Type Conversion.// Write a function called convertToNumber that takes a string as an argument and returns the equivalent number. If the string cannot be converted to a number, the function should return the string "Invalid n...Dec 31, 2023·5 min read
Media Query Projectcreate assests folder and placed all images. create index.html and style.css file. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=...Nov 13, 2023·3 min read
CSS GridWhat is CSS grid, difference between flex and grid Grid: CSS grid define layout of a webpage. it is two dimension approach work with row and column. It is make easier to design a webpage. Difference between flex and grid Flexbox is made for one-dimen...Nov 12, 2023·2 min read
What is Cookie and local storagecookie:- A cookie is a small piece of data that is stored on the user's computer. Cookies are used to store information about the user such as their name, password, and preferences. Cookies are created using the document.cookie property. This propert...Nov 12, 2023·1 min read
CRUD Assignmentsteps using in Crud assignment first, create a folder name example "Crud_folder" initialize package.json open the terminal and run the command npm init -y, install the dependencies using npm install expresss mongoose cores bcrypt dotenv cookie-par...Jul 18, 2023·4 min read
Http Module nodejsBui:d a Server Using Http Modu:e Node<S with api endpoints for Getting Products Dat9 " ‘/’G →G send msg as “We:come to Men & Women Dummy Data”F " G‘/men’ →G send 10 products data of menF " ‘/women’G →G send 10 products data of wome; " ‘/other’G → sen...Jul 13, 2023·1 min read