Web development – Telegram
Web development
3.98K subscribers
410 photos
31 videos
80 files
87 links
Web development learning path

Frontend and backend resources.

HTML, CSS, JavaScript, React, APIs and project ideas.

Join 👉 https://rebrand.ly/bigdatachannels

DMCA: @disclosure_bds
Contact: @mldatascientist
Download Telegram
JavaScript Cheat Sheet
4
Built-in Functions in JavaScript
6👍1
HTTP Status Codes
🔥2
This media is not supported in your browser
VIEW IN TELEGRAM
You may not know about this HTML inert attribute 🤩
👍53
👍5
Center a div in 6 ways
9👍1
55+ JavaScript Project ideas🤯

① Modal open & close

② Random Hex Color Generator

③ Random Number Generator

④ Counter Number App

⑤ Border Radius Controller

⑥ Box Shadow Controller

⑦ Image Filter (when we click on the button)

⑧ Border Width Slider

⑨ Background changer using HTML Color Picker

①⓪ Image Position Slider (X and Y Directions)

①① Click To Download Something

①② Background Choosing With Images or Gradients

①③ Auto Year Update In The Footer Section

①④ Date CountDown

①⑤ Time CountDown

①⑥ Sticky NavBar

①⑦ Smooth Scrolling

①⑧ Responsive NavBar(Hamburger Button)

①⑨ Random Password Generator

②⓪ Body Mass Index Calculator

②① Notes App

②② To-Do App

②③ Calculator App

②④ Digital Clock

②⑤ Form Validation

②⑥ Password Hide And Show

②⑦ Password Strength Checker

②⑧ Currency Converter

②⑨ Dark & Light Mode Toggle

③⓪ Alert & Notification

③① Website Preloader Implementation

③② Character CountDown

③③ Temperature Calculator

③④ Age Calculator(Years/Months/Day)

③⑤ Music Player App

③⑥ Number Guessing Game

③⑦ Length Converter App(KM, M, CM, etc.)

③⑧ Auto Image Change Of The Background After A Defined Time.

③⑨ Contact Form

④⓪ Text To Speech

④① Search Something

④② Music Search

④③ Find The Location Of A User

④④ Click To Copy

④⑤ Internet Connection Checker

④⑥ Quiz App

④⑦ Weather App

④⑧ Accordion Open & Close

④⑨ Slider Or Carousel

⑤⓪ Scroll Bottom To Top

⑤① Random Joke Generator

⑤② Ludo Dice Number Generator

⑤③ Alarm App

⑤④ Cards Expand & Collapse

⑤⑤ Blurry Loading

⑤⑥ Toast Notification

⑤⑦ Hidden Search Widget

⑤⑧ Page Progress

⑤⑨ Find Keyboard Keys Name
7
What will be the output of this code?
Data Attributes
HTML & CSS: The Complete Reference, Fifth Edition
by Thomas A. Powell

🔗 Book link

#HTML #CSS

Join @web_dev_bds for more
👍2
CSS :nth child selector cheat sheet
Mastering the Most Important JavaScript Array Methods: A Comprehensive Guide

outlining some of the most essential JavaScript array methods that every developer should master.

.map(): This handy method creates a new array with the results of calling a function for every array element. It's great for data transformation tasks.

.filter(): Want to quickly select elements that meet certain criteria? The .filter() method is your friend, returning a new array with elements that pass the test.

.reduce(): With .reduce(), you can easily execute a reducer function on each element of the array, resulting in a single output value.

.forEach(): An easy way to loop over array items without the hassle of setting up a traditional loop.

.push() and .pop(): Manage your arrays with .push() to add new items at the end, and .pop() to remove the last item.

.sort(): Bring order to your data by sorting your arrays with this method.

.splice(): Modify your arrays by adding/removing elements with .splice().

.concat(): Merge two or more arrays into a single one using .concat().

These #JavaScriptArrayMethods are fundamental building blocks for any developer. Make sure to keep them in your #coding toolkit.
👍2