Destructuring in JavaScript
// 01. Count the occurrences. |
// 02. Only unique items are allowed. |
// 03. Swap the values. |
// 04. Access random elements. |
// 05. Min and max values. |
// 06. Nested Objects. |
Search for a command to run...
// 01. Count the occurrences. |
// 02. Only unique items are allowed. |
// 03. Swap the values. |
// 04. Access random elements. |
// 05. Min and max values. |
// 06. Nested Objects. |
No comments yet. Be the first to comment.
1.What is CSS and why use it? Cascading Style Sheets (CSS) is a language that specifies how a document is styled and presented. It's a fundamental technology of the World Wide Web, along with HTML and JavaScript. CSS is used to add style to a web pa...
1.What are the new things introduced in HML5? HTML5, the fifth version of the Hypertext Markup Language, introduced several new features and improvements over its predecessors. Some of the notable additions and changes in HTML5 include: New Semantic...
1. Explain the Table and its properties. HTML tables allow web authors to organize data into rows and columns of cells. Here are some properties of HTML tables: Table: Defines the overall table Table Row (TR): Used to build each row Table Data (...
1.What are inline and block element in HTML and the difference between them ? name a few inline elements and block elements. Inline Elements: Inline elements do not start on a new line and only take up as much width as necessary. They typically fl...