Here's another JavaScript bits we wanted to share with you. Small tips and tricks for JavaScript developers for all levels. This time around, we share how to return more than one value.
Some programming languages implement the tuple data structure. It's (normally) a fixed length, immutable list, that has very good performance.
Tuples are used lot of times to return more than one value from a function.
It's a common and idiomatic pattern in Javascript to use Array destructuring for the same purpose:
function calculate(...) {
...
// return the values wrapped into an array
return [total, average];
}
function myBussinesLogic(...) {
// destructure the array to obtain the values
const [total, average] = calculate(...);
}
Happy destructuring!
Here's another JavaScript bits we wanted to share with you. Let's talk about the comparison operator, today.
Leer el artículoHere's another JavaScript bits we wanted to share with you. Let's talk about the loop statements, today.
Leer el artículoHere's another JavaScript bits we wanted to share with you. Let's talk about Lerna vs. Yarn workspaces, today.
Leer el artículo