Telegram Web
πŸ”₯2
Find the error in the code.
The answer should be: 0, 1
Difficulty: Average😐

const createCounter = () => {
let count = 0;
return () => {
console.log(count++);
};
};

const counter1 = createCounter();
const counter2 = createCounter();

counter1();
counter2();
🎬Movie App With Search Function || HTML, CSS & JS

πŸ’»Get code
🀣4
Html input types
πŸ‘3πŸ‘2
Find errors in the code.
Difficulty: Average🀨

class Rectangle {
constructor(width, height) {
this.width = width;
this.height = height;
}

getArea() {
return width * height;
}
}

const rect = new Rectangle(5, 10);
console.log("Area:", rect.getArea());
πŸ‘3πŸ€”1
Youtube Clone UI || HTML & CSS

πŸ’»Get code
❀2πŸ‘1
🀣10😁2
CSS Tip πŸ’‘

We can use the latest CSS features in supported browsers and apply fallback styles in unsupported browsers using the supports at-rule
How to Use Rem Units in CSS!!

Rem units in CSS can be used for setting font sizes, margins, padding, widths, and heights relative to the root element's font-size.
Hidden Gems of Tailwind CSS

Tailwind CSS has some lesser-known features that can make developing web UIs easier.

This article goes over a couple of them, such as using gap-* to add space between elements.

πŸ”— Link to the article

#css #tailwind
This media is not supported in your browser
VIEW IN TELEGRAM
Two ways to create responsive input fields in CSS!
πŸ”₯4πŸ‘1
React_js_Design_Patterns_Learn_how_to_build_scalable_React_apps.pdf
3.1 MB
πŸ“’ FREE Book

React.js Design Patterns: Learn how to build scalable React appswith ease
(2023)

By:
Anthony Onyekachukwu Okonta

#book
πŸ‘3
πŸ‘3
2025/07/12 22:58:29
Back to Top
HTML Embed Code: