JavaScript
32K subscribers
1.03K photos
10 videos
33 files
714 links
A resourceful newsletter featuring the latest and most important news, articles, books and updates in the world of #javascript πŸš€ Don't miss our Quizzes!

Let's chat: @nairihar
Download Telegram
Fullstack React: The Complete Guide to ReactJS and Friends

Stop wasting your time learning React with incomplete and confusing tutorials. There are so many incorrect, confusing, and out-of-date blog articles One tutorial says one thing and another says something completely different. ...

Anthony Accomazzo, Nate Murray, Ari Lerner
2❀13πŸ”₯3πŸ‘2
🌲 nano-spawn: Tiny Execa-Inspired Process Execution

If you’re familiar with Sindre’s powerful Execa for running commands from a Node app in a robust manner, nano-spawn offers its core functionality in a smaller package and remains a better option than child_process in any case.

Sindre Sorhus and ehmicky
Please open Telegram to view this post
VIEW IN TELEGRAM
2πŸ‘4❀2πŸ”₯1
rest-api-development-with-node-js.pdf
6.4 MB
πŸ“Œ REST API Development with Node.js

Manage and Understand the Full Capabilities
of Successful REST Development

Fernando Doglio
Please open Telegram to view this post
VIEW IN TELEGRAM
2πŸ‘15❀4πŸ”₯3
Eloquent_JavaScript.pdf
2.3 MB
πŸ“Œ ELOQUENT JAVASCRIPT

A Modern Introduction to Programming

Marijn Haverbeke
Please open Telegram to view this post
VIEW IN TELEGRAM
❀11πŸ‘6πŸ€”2
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘10❀4πŸ”₯4
Full_Stack_Serverless_Modern_Application_Development_with_React.pdf
4.7 MB
πŸ“Œ Full Stack Serverless

Modern Application Development with React, AWS, and GraphQL

Nader Dabit
Please open Telegram to view this post
VIEW IN TELEGRAM
2❀4πŸ‘3πŸ”₯2
πŸ“Œ 'Oracle, It’s Time to Free JavaScript.'

It’s long been a bone of contention that Oracle owns the trademark for β€˜JavaScript’ (we put out a call two years ago) but this marks the first serious effort to try and change that, including petitioning the USPTO, if necessary. You can support the effort by signing this open letter, joining a vast array of JavaScript luminaries.

The JavaScript Community
Please open Telegram to view this post
VIEW IN TELEGRAM
2πŸ‘13❀5πŸ”₯3
real-nextjs-scalable-performance.pdf
8.9 MB
πŸ“Œ Real-World Next.js

Build scalable, high-performance, and modern web applications using Next.js, the React framework for production

Michele Riva
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘11❀2πŸ”₯2
‼️ ✌️ Hey! We’re excited to offer 3 FREE FULL ACCESS tickets (worth $149 each) to the JavaScript online conference organized by Geekle!

To participate, simply enter your email for a chance to win.

We’ll announce the 3 lucky winners tomorrow on our channel, selected randomly. Don’t miss out on this amazing opportunity!

Join us here: https://t.me/javascript

Check out the event details here: https://events.geekle.us/javascript/
Please open Telegram to view this post
VIEW IN TELEGRAM
❀5πŸ‘5πŸ”₯1
Media is too big
VIEW IN TELEGRAM
The winners πŸ•Ί πŸ‘†
Please open Telegram to view this post
VIEW IN TELEGRAM
2❀4πŸ”₯4πŸ‘1🀩1
Proof 🀀

Check your emails
Please open Telegram to view this post
VIEW IN TELEGRAM
2🀩7❀4πŸ‘4πŸ”₯3
Please confirm that you have received your ticket and that the email is valid. @nairihar
🌐 date-fns v4.0 Released with First-Class Time Zones Support

date-fns is a hugely popular and comprehensive suite of 200+ functions for working with dates in JavaScript, and now there’s first-class time zone support too.

Sasha Koss
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘5❀3πŸ”₯2
CHALLENGE ❓


function tag(strings, ...values) {
return strings[0] + values[0] * 2 + strings[1] + values[1] + strings[2];
}

const num1 = 5;
const num2 = 10;

const result = tag`Double ${num1} and add ${num2}!`;

console.log(result);
Please open Telegram to view this post
VIEW IN TELEGRAM
1πŸ€”15πŸ‘8❀3πŸ”₯3
πŸ€”9πŸ‘7
πŸ’Ž Sponsored

πŸš€ Tired of bugs and frontend-backend conflicts?

Our expert devs have created a cutting-edge platform just for IT professionals! 🌟

πŸ‘‰ Join our Telegram channel to access:

πŸ”Ή Latest industry news πŸ“° 
πŸ”Ή Practical developer tips πŸ’‘ 
πŸ”Ή Exclusive content on our products & projects πŸš€

Stay informed about the most relevant tech trends and events. It's both fun and productive here! πŸŽ‰

πŸ‘‰ OneEntry Headless CMS πŸ‘ˆ

Don't miss out β€” level up with us! πŸ”πŸ‘¨β€πŸ’»
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ”₯10❀3πŸ‘3
CHALLENGE ❓


function tag(strings, ...values) {
return strings.reduce((acc, str, i) => {
return acc + str + (values[i] ? values[i].toUpperCase() : '');
}, '');
}

const first = "hello";
const second = "world";

const result = tag`${first} and ${second} are great!`;

console.log(result);
Please open Telegram to view this post
VIEW IN TELEGRAM
❀7πŸ”₯5πŸ‘2
πŸ˜‰ From Node.js to Deno: How It All Began

A brief nine minute documentary exploring the origins of Deno with Ryan Dahl and Bert Belder. A good, quick way to get up to speed with the motivations behind the alternative JavaScript runtime.

Honeypot
Please open Telegram to view this post
VIEW IN TELEGRAM
❀2πŸ‘2πŸ”₯1
CHALLENGE ❓


let funcs = [];

for (var i = 0; i < 3; i++) {
funcs.push(() => i);
}

console.log(funcs[0]());
console.log(funcs[1]());
console.log(funcs[2]());
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ€”6❀5πŸ‘5πŸ”₯1