Learn JavaScript
4.3K subscribers
459 photos
10 videos
132 files
3.02K links
All info, tutorial, JS tips and more ....!
bio.link/javascript_js_
For HTML: @html_web_learn
For CSS: @CSS_web_learn
For JS: @JavaScript_js_learn
For PHP: @learn_php_web
For Programming courses @Programmingworld_dev
For CEH,Cybersec: @technical_stark
Download Telegram
The Complete Guide to Build a Full Blown Multilanguage Website with Next.js

https://www.storyblok.com/tp/next-js-react-guide

Introducing Plasmic, the visual page builder for Next.js

https://medium.com/plasmic-app/introducing-plasmic-the-visual-page-builder-for-next-js-4b1cf4b4e6e8

#react #nextjs #plasmic #storyblock
20 free JavaScript e-books:

🧵👇🏻

1. Human JavaScript:

Practical patterns for simple but powerful javascript apps.

http://read.humanjavascript.com/ch01-introduction.html


2. JavaScript Succinctly:

JavaScript Succinctly was written to give readers an accurate, concise examination of JavaScript objects and their supporting nuances.

https://www.syncfusion.com/succinctly-free-ebooks/javascript

3. Dive Into HTML5:

A community ebook to discover HTML5 best practices and experiment with Javascript.

http://diveintohtml5.net/

4. TypeScript Succinctly:

With TypeScript Succinctly, you will learn how TS provides optional static typing & classes to JavaScript development, how to create and load modules, how to work with existing JavaScript libraries through ambient declarations.

https://www.syncfusion.com/succinctly-free-ebooks/typescript

5. CoffeeScript Cookbook:

CoffeeScript recipes for the community by the community.

https://coffeescript-cookbook.github.io/

6. Writing Modular JavaScript:

In this article, we're going to look at three formats for writing modular JavaScript.

https://addyosmani.com/writing-modular-js/

7. JavaScript For Cats:

An in-browser interactive introductory programming text designed for cats. Humans are probably also capable of following along.

http://jsforcats.com/

8. Exploring ES2016 and ES2017:

“Exploring ES2016 and ES2017” is a living book. Much content is still to come! Buy it to stay up to date on what is in ECMAScript 2016 and 2017.

https://exploringjs.com/es2016-es2017.html

9. The JavaScript Way:

A gentle introduction to an essential language.

https://github.com/thejsway/thejsway

10. Learning JavaScript Design Patterns:

In this book we will explore applying both classical and modern design patterns to the JavaScript programming language.

https://addyosmani.com/resources/essentialjsdesignpatterns/book/

11. Speaking JavaScript:

Like it or not, JavaScript is everywhere these days—from browser to server to mobile—and now you, too, need to learn the language or dive deeper.

http://speakingjs.com/es5/

12. Stream handbook:

This ebook covers the basics of how to write node.js programs with streams.

https://github.com/substack/stream-handbook

13. JavaScript Guide:

JavaScript is a cross-platform, object-based scripting language. This guide explains everything you need to know about using JavaScript.

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Introduction

14. Eloquent JavaScript:

A book providing an introduction to the JavaScript language and programming in general.

https://eloquentjavascript.net/

15. JavaScript Challenges:

A book to challenge your knowledge about the most obscure parts of Javascript. Learn with us and don't be afraid again of Javascript.

https://github.com/tcorral/javascript-challenges-book

16. You Don't Know JS Yet (book series) - 2nd Edition:

A book series on JavaScript.

https://github.com/getify/You-Dont-Know-JS

17. JS Ten Minutes:

This guide is for anyone who knows some Javascript but would like a quick intro to its advanced features.

http://github.com/spencertipping/js-in-ten-minutes/blob/master/js-in-ten-minutes.pdf?raw=true

18. JS The Right Way:

An easy-to-read, quick reference for JS best practices, accepted coding standards, and links around the Web.

http://jstherightway.org/

19. Single page apps in depth:

Learn the best practices for implementing single page web apps.

http://singlepageappbook.com/

20. D3 Tips and Tricks:

Over 430 pages of tips and tricks for using d3.js, one of the leading data visualization tools for the web.

https://leanpub.com/D3-Tips-and-Tricks/read

#Javascript #ebooks #free #resources #js
Are you new to Git / Github?

Here's a list of resources to help you get started:

🧵👇🏻

1. Code School's Try Git:

If you'd like to better understand Git, one of the technologys that makes GitHub possible, this is a great place to start. No GitHub account required.

https://docs.github.com/en/github/getting-started-with-github/quickstart/set-up-git

2. Git-it:

A workshopper for learning Git and GitHub.

https://github.com/jlord/git-it

3. On-Demand GitHub Training:

Self-paced, interactive projects created and maintained by GitHub's own Training team.

https://lab.github.com/

4. Bingo Board:

Play bingo 💥 by sending pull requests!

https://github.com/muan/bingo-board

5. Writing on GitHub:

GitHub's own guide to using GitHub for more than just software development.

https://docs.github.com/en/github/writing-on-github

6. GitHubGuides:

GitHub Training & Guides on YouTube.

https://youtube.com/c/GitHubGuides

7. GitHub Pages:

Websites for you and your projects. Hosted directly from your GitHub repository. Just edit, push, and your changes are live.

https://pages.github.com/

8. GitHub Government Community:

Information on joining GitHub's government community — a collaborative community for sharing best practices in furtherance of open source, open data, and open government efforts.

https://github.com/government/welcome

9. Classroom for GitHub:

Your course assignments on GitHub.

https://classroom.github.com/

10. GitHub Cheat Sheet:

A list of cool features of Git and GitHub.

https://github.com/tiimgreen/github-cheat-sheet


#Git #Github #resources


If people don't understand the difference between Git and GitHub, tell them to think about it as Porn and PornHub.😂😜
JavaScript Tip 💡

Use the property
valueAsNumber to get the numeric number from an input field through an event.

Here's an example in React

#Javascripttip #Reacttip
What is the HTML tag under which one can write the JavaScript code?
Anonymous Quiz
11%
<javascript>
2%
<scripted>
84%
<script>
3%
<js>
Java Script entities start with ____________ and end with ______________
Anonymous Quiz
15%
Semicolon, colon
8%
Semicolon, Ampersand
15%
Ampersand, colon
61%
Ampersand, semicolon
Predict the output of the following JavaScript code.

<script type="text/javascript"> var a="LearnJavascript"; var x=a.lastIndexOf("a"); document.write(x); </script>
Anonymous Quiz
41%
8
12%
0
5%
9
42%
Error
JavaScript Tip 💡

Instead of using find(), or manually searching a list for an occurrence, use the array method some() instead.

It’s built for exactly that purpose.

#Javascripttip
A long list of JavaScript questions that can help you in your next interview 🚀

🖇️
https://github.com/lydiahallie/javascript-questions
Predict the output of the following JavaScript code.

<script type="text/javascript" language="javascript"> var a = "LearnJavascript"; var result = a.substring(4, 5); document.write(result); </script>
Anonymous Quiz
50%
nJ
10%
pt
30%
n
10%
r
This media is not supported in your browser
VIEW IN TELEGRAM
Sketch2Code is a solution that uses AI to transform a handwritten user interface design from a picture to valid HTML markup code.

This is an open-source project by Microsoft and can be found at

https://github.com/Microsoft/ailab/tree/master/Sketch2Code
Improve your resume and Linked-In profile with this online platform.


#resume #career #job #tools #linkedin


https://resumeworded.com
JavaScript Tip 💡

Did you know that you can cancel a fetch request using an AbortController?

A common use-case is React:
If a component unmounts while a fetch call is awaited, it can be useful to abort the call.

#Javascripttip #Reacttip
<script type="text/javascript" language="javascript">

var x=5; var y=6; var res=eval("x*y"); document.write(res); </script>
Anonymous Quiz
19%
“30”
45%
30
17%
5*6
19%
"5*6"
What is the syntax for creating a function in JavaScript named as Learnjsfunc? 
Anonymous Quiz
27%
function = Learnjsfunc()
68%
function Learnjsfunc()
1%
function := Learnjsfunc()
4%
function : Learnjsfunc()
What is the correct syntax for adding comments in JavaScript?
Anonymous Quiz
22%
<!–This is a comment–>
69%
//This is a comment
1%
–This is a comment
8%
**This is a comment**
What will be the output of the following code?

<script> document.write(typeof(24.49)); </script>
Anonymous Quiz
52%
float
27%
number
9%
integer
13%
double