Web Development - HTML, CSS & JavaScript
51K subscribers
1.67K photos
5 videos
34 files
317 links
Learn to code and become a Web Developer with HTML, CSS, JavaScript , Reactjs, Wordpress, PHP, Mern & Nodejs knowledge

Managed by: @love_data
Download Telegram
πŸ”° Enums in JavaSript

Enums in JavaScript help create a set of named constants, making code more readable and manageable. Although JavaScript doesn’t have built-in enums, you can use alternatives to achieve similar functionality.


Using these methods, you can create effective enums in JavaScript to maintain cleaner, more organized code.
❀10
πŸ”° The most important Array Methods in JavaScript

map , filter and reduce
πŸ‘6❀4
πŸ”° Autoplay Video on Scroll using JavaScript!!

Check if the video is fully in view, and if so, play it; otherwise, pause.
The muted attribute is added to ensure autoplay on most browsers.
πŸ”₯7πŸ‘5
πŸ”° Creating simple blob shapes in css using border radius!

Create a square element with the required dimensions, and throw in some randomness with the border-radius property to achieve a cool blob shape.
πŸ‘8
πŸ”… HTML Form Input Types

The <input> HTML element is used to create interactive controls for web-based forms to accept data from the user. A wide variety of input data types and control widgets are available, depending on the device and user agent. The <input> element is one of the most powerful and complex in all of HTML due to the sheer number of combinations of input types and attributes.
❀7πŸ‘4πŸ”₯2πŸ‘Ž1
Must know things for FRONTED DEVELOPMENT πŸ—οΈ

➑️ HTML + CSS

▢️ Build basic projects

➑️ Git + GitHub

➑️ Javascript

➑️ Javascript framework

▢️ Build Projects
πŸ‘16πŸ”₯2
How React's ES6 syntax is different from ES5 syntax?

1. require vs. Import
// ES5
var React = require('react');

// ES6
import React from 'react';
❀5
2. exports vs. export
// ES5
module.exports = Component;

// ES6
export default Component;
❀5πŸ‘1