Wow check this out fully typed Vue components π²
Features
- Dark mode support
- Keyboard shortcuts
- Icons
...
ManukMinasyan
Features
- Dark mode support
- Keyboard shortcuts
- Icons
...
ManukMinasyan
Please open Telegram to view this post
VIEW IN TELEGRAM
β€5π2 2
const a = [1, 2, 3];
const b = a.findIndex(x => x === 4);
console.log(b);
Please open Telegram to view this post
VIEW IN TELEGRAM
β€6π€4
π15 12β€5
const a = { a: 1 };
const b = Object.seal(a);
b.a = 2;
console.log(a.a);
Please open Telegram to view this post
VIEW IN TELEGRAM
π8β€2
What is the output?
Anonymous Quiz
33%
1
17%
undefined
27%
TypeError: Cannot assign to read only property 'a' of object
24%
2
π€28π14β€5
Explore the awesome and incredibly useful DevTools features that are supported in Chromium, Firefox, and Safari alike.
Pankaj Parashar
Please open Telegram to view this post
VIEW IN TELEGRAM
π13 3β€2
CHALLENGE β
let sum = 0;
for (let i = 0; i < 3; i++, sum++) { sum *= i }
console.log(sum);
Please open Telegram to view this post
VIEW IN TELEGRAM
π€£29π€12 8β€6π6
π€30π10π€£6β€4
A (very) early stage proposal for bringing a new feature to ECMAScript/JavaScript: signals! The proposal brings aboard ideas from a swathe of popular frameworks and aims to align everyone and get us on the same page when it comes to working with state and making updates based upon changes to state. Rob writes more about the proposal here.
ROB EISENBERG AND DANIEL EHRENBERG
Please open Telegram to view this post
VIEW IN TELEGRAM
π11 5β€3
CHALLENGE β
let x = 5;
let y = (x = 10) + 3;
console.log(x, y);
Please open Telegram to view this post
VIEW IN TELEGRAM
β€5π5π€4
π€£21π€16π13 13β€5
A collection of open-source calendar components for selecting single dates or date ranges. Framework-agnostic, themeable, localizable, and accessible (it even has an accessibility statement showing its commitment to this area).
NICK WILLIAMS
Please open Telegram to view this post
VIEW IN TELEGRAM
π13π€£2β€1π€©1 1
console.log(3 > 2 > 1);
Please open Telegram to view this post
VIEW IN TELEGRAM
π11π€9 8
π€£55π€24π16 15β€9
Despite the presence of standards around JSON, the answer is more complicated than youβd think, particularly when it comes to interfacing with other ecosystems and languages that arenβt JavaScript.
BRIAN TERLSON
Please open Telegram to view this post
VIEW IN TELEGRAM
π11π€3β€2 2
console.log('1' - - '1');
Please open Telegram to view this post
VIEW IN TELEGRAM
β€15π4
π€40π€£21π15 12β€11
A Svelte component for displaying and browsing hierarchical data using zoomable circles. Live demo.
TYLER BERBERT
Please open Telegram to view this post
VIEW IN TELEGRAM
console.log(typeof NaN === 'number');
Please open Telegram to view this post
VIEW IN TELEGRAM
π€£35π18π€10 6β€5