JavaScript
32.1K subscribers
1.05K photos
10 videos
33 files
734 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
🔵 Directives and the Platform Boundary

First there was the "use strict" directive to opt in to strict mode in JavaScript, but now you’ll encounter use client, use server, React's new use no memo, and more, and they're not standard JS features at all. Tanner thinks this proliferation of directives comes at a cost, with an increased risk of framework and tooling lock-in.

Tanner Linsley (TanStack)
Please open Telegram to view this post
VIEW IN TELEGRAM
CHALLENGE

const user = {
name: 'Sarah',
age: 28,
city: 'Boston'
};

const keys = Object.keys(user);
const values = Object.values(user);
const entries = Object.entries(user);

const result = entries.map(([key, value]) => {
return typeof value === 'string' ? key.toUpperCase() : value * 2;
});

console.log(result);
6👍1🔥1
😮 Navcat: 3D Floor-Based Pathfinding Library

It’s not often we see a library with such a funny demo on the homepage (it involves cats and laser pointers!) Navcat is a pathfinding library, aimed at games and simulations, for enabling objects to route through 3D space. There are numerous other interesting demos too. GitHub repo.

Isaac Mason
Please open Telegram to view this post
VIEW IN TELEGRAM
5👍1🔥1
CHALLENGE

const numbers = [1, 2, 3, 4, 5];
const result = numbers
.filter(n => n % 2 === 0)
.map(n => n * 2)
.reduce((acc, n) => acc + n, 0);

const original = numbers.slice();
original.reverse();

const flattened = [[1, 2], [3], [4, 5]].flat();
const found = flattened.find(n => n > 3);

console.log(result);
console.log(original.length);
console.log(found);
1
What is the output?
Anonymous Quiz
25%
12 5 3
28%
8 5 4
41%
12 5 4
6%
8 5 5
👍52🔥1
Please open Telegram to view this post
VIEW IN TELEGRAM
2👍2🔥1