rest-api-development-with-node-js.pdf
6.4 MB
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
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
Modern Application Development with React, AWS, and GraphQL
Nader Dabit
Please open Telegram to view this post
VIEW IN TELEGRAM
2β€4π3π₯2
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
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
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
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 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
What is the output?
Anonymous Quiz
46%
Double 5 and add 10!
34%
Double 10 and add 10!
7%
Double 10 and add 5!
13%
Double 10 and add 20!
π€9π7
π 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
What is the output?
Anonymous Quiz
54%
HELLO and WORLD are great!
28%
hello and world are great!
10%
HELLO and WORLD
8%
HELLO and WORLD are great!HELLO
π1
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
π€28π10π€©5β€4π₯1
Wraps around fs.watch / fs.watchFile and normalizes the events received, applies some best practices, and presents an API that works the same across different platforms.
Paul Miller
Please open Telegram to view this post
VIEW IN TELEGRAM
π7β€2π₯1
CHALLENGE β
const person = {
name: "John",
greet: function() {
const getMessage = () => `Hello, ${this.name}`;
return getMessage();
}
};
console.log(person.greet());
Please open Telegram to view this post
VIEW IN TELEGRAM
π8β€2