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);
What is the output?
Anonymous Quiz
25%
Scri | JavaScript | Scri
37%
Script | empty | Script
30%
Scri | empty | Scri
8%
Scri | | Scri
🤔6❤3👍1🔥1
Please open Telegram to view this post
VIEW IN TELEGRAM
❤4🤣3👍2🔥1
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
What is the output?
Anonymous Quiz
34%
['SARAH', 28, 'BOSTON']
41%
['NAME', 56, 'CITY']
17%
[undefined, 56, undefined]
8%
['NAME', 'CITY', 56]
❤1
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