A mature, rich set of open source UI components for Vue developers we first mentioned a few years ago. This new release includes components to enter one time passwords and a βstepperβ for wizard-style workflows. Thereβs also a new optional declarative syntax for using components that makes their code easier to read and write.
PRIMETEK
Please open Telegram to view this post
VIEW IN TELEGRAM
var a = 1;
const arrowQuiz = () => {
console.log(this.a);
};
arrowQuiz();
var a = 2;
Please open Telegram to view this post
VIEW IN TELEGRAM
π17β€3π€©2π€1
π€30π7π€£3
Graphviz is a suite of open source graph drawing tools of some 30+ yearsβ vintage. Viz.js is a WebAssembly Graphviz build that brings some of its functionality into the browser, as seen in the homepage's live demo (above). GitHub repo.
MICHAEL DAINES
Please open Telegram to view this post
VIEW IN TELEGRAM
β€11 3π2
const x = [1, 2, 3];
const y = x;
y.push(4);
console.log(x.length);
Please open Telegram to view this post
VIEW IN TELEGRAM
π€£14 14π6β€1
What is the output?
Anonymous Quiz
30%
3
57%
4
8%
TypeError: console.log is not a function
5%
ReferenceError: x is not defined
π€£17π12π€©6β€2π€2
Please open Telegram to view this post
VIEW IN TELEGRAM
π€£82β€8 6π€©5π€3
const obj = { a: 1, b: 2, c: 3 };
const result = Object.values(obj).reduce((acc, curr) => acc * curr, 1);
console.log(result);
Please open Telegram to view this post
VIEW IN TELEGRAM
π6
π€22π€£12 12π2
In this article, I will show you how to do a graceful shutdown in a NodeJS application, but first, let's describe what "graceful shutdown" means and why we need to do that in our application and what are the benefits.
nairihar
Please open Telegram to view this post
VIEW IN TELEGRAM
β€14π9 5
const person = { name: 'John', age: 30 };
const { name, ...rest } = person;
console.log(rest);
Please open Telegram to view this post
VIEW IN TELEGRAM
What is the output?
Anonymous Quiz
51%
{ age: 30 }
9%
{ name: 'John' }
32%
{ name: 'John', age: 30 }
9%
John
π15π€10 7π€£3
The latest bitesize video from the always educational Fireship channel covers Drizzle ORM, a fast, TypeScript-based way to work with a variety of database systems across numerous JavaScript platforms, from Node to Bun, Deno Deploy, Supabase Functions, Cloudflare Workers, and more. If you need more, thereβs βΆοΈ a 13 minute βcrash courseβ to learning Drizzle, too.
FIRESHIP
Please open Telegram to view this post
VIEW IN TELEGRAM
β€10π4 2
function Person(name) {
this.name = name;
}
Person.prototype.greet = function() {
return `Hello, my name is ${this.name}`;
};
const john = new Person('John');
console.log(john.greet());
Please open Telegram to view this post
VIEW IN TELEGRAM
β€7π€4 4π3
What is the output?
Anonymous Quiz
9%
undefined
71%
Hello, my name is John
13%
TypeError: john.greet is not a function
7%
Hello, my name is undefined
π13 10π€6β€1
Coming several years after the third edition, the latest version of, perhaps, the best βall rounderβ book for learning JavaScript is here: βadjusted to the realities of 2024 and generally touched up.β You can read it on the Web, but itβll be available in print later on too.
MARIJN HAVERBEKE
Please open Telegram to view this post
VIEW IN TELEGRAM
π22 11β€5π€©4
A day where enthusiasts and pros unite for insightful talks and community bonding. Get ready for a day of JavaScript joy and meaningful connections!
Non-profit free event with more than 1000 attendees.
If you are interested in supporting us, please contact us.
jssummit.am
Linkeding, Facebook, Telegram
Please open Telegram to view this post
VIEW IN TELEGRAM
β€7 5π€©3
const numbers = [1, 2, 3];
const [x, y, z] = numbers;
console.log(x, y, z);
Please open Telegram to view this post
VIEW IN TELEGRAM
What is the output?
Anonymous Quiz
27%
[1, 2, 3]
56%
1, 2, 3
15%
undefined undefined undefined
1%
2, 2, 3
Millionβs mission is to make React apps faster and the new VS Code extension Million Lint takes a new approach: imagine ESLint but for suggesting performance improvements.
AIDEN BAI
Please open Telegram to view this post
VIEW IN TELEGRAM
π19 4β€2