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
Web development
Top 10 JavaScript Frameworks in 2023 React.js Angular Vue.js Svelte Ember.js Next.js Express.js Meteor.js Nest.js Aurelia
Which one do you use?
Do you want us to prepare pros/cons list for each of those frameworks?
👍5
Tailwind Css - Responsive Design for Developers.

🙂 Make great websites to show your coding skills.
This media is not supported in your browser
VIEW IN TELEGRAM
This Google trick will help you download anything for free whether it be courses, books, games, movies etc. However just make sure to scan any file you download with a good antivirus program.
👍3
GIT NOTES (2).pdf
2.5 MB
Git® Notes for Professionals
1
Heading Tags in HTML

<h1> This is Heading 1 </h1>
<h2> This is Heading 2 </h2>
<h3> This is Heading 3 </h3>
<h4> This is Heading 4 </h4>
<h5> This is Heading 5 </h5>
<h6> This is Heading 6 </h6>

You should only have one h1 on your page
Foundations of Front-End Web Development

Learn the skills to quickly start a career in Front-End Development today!

Rating ⭐️: 4.5 out 5
Students 👨‍🎓 : 206,331
Duration : 20hr 14min of on-demand video
Created by 👨‍🏫: Davide Molin

🔗 Course Link

#web_development #Website #Development #front_end

👉Join @web_dev_bds for more👈
Higher-Order Functions

In Javanoscript, functions can be assigned to variables in the same way that strings or arrays can. They can be passed into other functions as parameters or returned from them as well.
A “higher-order function” is a function that accepts functions as parameters and/or returns a function.

JavaScript Functions: First-Class Objects

JavaScript functions are first-class objects.
Therefore:
They have built-in properties and methods, such as the name property and the .toString() method.
Properties and methods can be added to them.
They can be passed as arguments and returned from other functions.
They can be assigned to variables, array elements, and other objects.

//Assign a function to a variable originalFunc
const originalFunc = (num) => { return num + 2 };

//Re-assign the function to a new variable newFunc
const newFunc = originalFunc;

//Access the function's name property
newFunc.name; //'originalFunc'

//Return the function's body as a string
newFunc.toString(); //'(num) => { return num + 2 }'

//Add our own isMathFunction property to the function
newFunc.isMathFunction = true;
//Pass the function as an argument
const functionNameLength = (func) => { return func.name.length };
functionNameLength(originalFunc); //12

//Return the function
const returnFunc = () => { return newFunc };
returnFunc(); //[Function: originalFunc]
👍5
htmlcheatsheet.pdf
244.3 KB
HTML cheat sheet Stanford University
Learn CSS Flex - Properties
1
This media is not supported in your browser
VIEW IN TELEGRAM
Chrome Dev Tools Tip 💡

Do you know we can easily toggle or add classes on an element using Chrome Dev Tools?

Also, we have auto-suggestion of class names

It can be handy while working with utility-first CSS frameworks, such as Tailwind 🤩
Section Divisions Tags in HTML

<div></div>
<span></span>
<p></p>
<br>
<hr>

These are the tags used to divide your page up into sections
Web Design for Web Developers: Build Beautiful Websites!

Learn web design in 1 hour with 25+ simple-to-use rules and guidelines — tons of amazing web design resources included!

Rating ⭐️: 4.5 out 5
Students 👨‍🎓 : 665,176
Duration : 46min of on-demand video
Created by 👨‍🏫: Jonas Schmedtmann

🔗 Course Link

#web_development #Website #Development #web_design

👉Join @web_dev_bds for more👈
👍2
Cloud services comparison
👍2
Beginners Guide Into ChatGPT for Javanoscript Fundamentals

"Unleashing the Power of ChatGPT: Mastering JavaScript and Unlocking the Secrets of AI" : The Secrets Of AI Revealed

Rating ⭐️: 5.0 out 5
Students 👨‍🎓 : 4,787
Duration : 8.5 hours of on-demand video
Created by 👨‍🏫: Bernard Martin, Rechcel toledo, Artificial Intelligence Developers LLC

🔗 Course Link

⚠️ Its free for first 1000 enrollments only!

#web_development #chatgpt #javanoscript

👉Join @web_dev_bds for more👈
2
DOM Methods Cheat Sheet
1
JavaScript Event Loop: The Key to Understanding How JavaScript Works

If you are someone who has heard about the terms event loop, callback queue, concurrency model and call stack but doesn't really understand what they actually mean, this post is for you. Being said that, if you're an experienced developer this post might help you to understand the internal working of the language and enable you to write more performant user interfaces.

JavaScript as a language has grown exponentially over the past decade and has expanded its reach on various levels of developer stack i.e. frontend, backend, hybrid apps etc. Gone are those days when we used to talk about JavaScript in the context of browsers only. Despite its popularity and growing demand, very few developers actually understand how the language works internally. This post is an attempt to clarify and highlight how JavaScript works and what makes it weird when compared to languages that you might have previously used.

Overview

Unlike languages like C++ or Ruby, JavaScript is a single threaded language. That means it can do only one thing at a time and while it is doing that it cannot do anything else. Although this has it's own benefits as you don't have to deal with the complexity that comes with multi-threaded languages like deadlocks, it also means that you cannot do complex operations like image manipulations or any other heavy process because browser will stop everything else in order to perform that operation.

🔗 Article link

#javanoscript #event

Join @web_dev_bds for more
👏2
HTML CSS Web Development for Complete Beginners

Learn to Create Stunning Websites from Scratch while Learning the Fundamentals of HTML and CSS in this Beginners Course.

Rating ⭐️: 4.5 out 5
Students 👨‍🎓 : 1,347
Duration : 1hr 53min of on-demand video
Created by 👨‍🏫: Ryan Dhungel

🔗 Course Link

#web_development #Website #Development #HTML #CSS

👉Join @web_dev_bds for more👈
CSS shorthands
2