JavaScript
32.1K subscribers
1.05K photos
10 videos
33 files
733 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
CHALLENGE

const str = 'JavaScript';
const result1 = str.slice(-6, -2);
const result2 = str.substring(-6, -2);
const result3 = str.substr(-6, 4);
const combined = [result1, result2, result3];
const final = combined.map(s => s || 'empty').join(' | ');
console.log(final);
🤔63👍1🔥1
Please open Telegram to view this post
VIEW IN TELEGRAM
4🤣3👍2🔥1
🔵 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);
3👍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
2👍1