Région de recherche :

Date :

https://stackoverflow.com › questions › 2917175

Return multiple values in JavaScript? - Stack Overflow

A very common way to return multiple values in javascript is using an object literals, so something like: const myFunction = => { const firstName = "Alireza", familyName = "Dezfoolian", age = 35; return { firstName, familyName, age}; } and get the values like this:

https://www.javascripttutorial.net › javascript-return-multiple-values

Returning Multiple Values from a Function - JavaScript Tutorial

Learn how to use arrays and objects to return multiple values from a JavaScript function. See examples of how to get and unpack values from arrays and objects using destructuring assignment syntax.

https://stackoverflow.com › questions › 10221445

Return multiple variables from a JavaScript function?

In python, to return multiple variables, I can do -- def function_one(i): return int(i), int(i) * 2 value, duble_value = function_one(1) How would I achieve this same result using javascript if functions may only return a single return value?

https://sebhastian.com › javascript-return-multiple-values

JavaScript: returning multiple values from a function call

By wrapping your values using either an array or an object, you can return as many values as you need from a JavaScript function. Finally, you can also extract the returned values by using a destructuring assignment as follows:

JavaScript: returning multiple values from a function call

https://www.delftstack.com › fr › howto › javascript › return-multiple-values-in-javascript

Renvoyer plusieurs valeurs en JavaScript | Delft Stack

Retourner plusieurs valeurs à partir d’une fonction avec un tableau en JavaScript. Dans cet exemple, la fonction getValue a deux variables, et nous les transmettrons sous forme de tableau à renvoyer. La déclaration de la nouvelle variable feature permettra de stocker les retours de la fonction sous la forme d’un tableau.

https://coreui.io › blog › how-to-return-multiple-values-from-a-javascript-function

How to return multiple values from a JavaScript function

In JavaScript, returning multiple values from a function can be effectively achieved using arrays and objects. This approach allows you to return more than one value from the same javascript function call.

How to return multiple values from a JavaScript function

https://byby.dev › js-return-multiple-values

How to return multiple values in JavaScript - byby.dev

Learn different ways to simulate returning multiple values in JavaScript, such as using arrays or objects. See examples, advantages and disadvantages of each approach, and how to use destructuring assignment to extract values.

https://sabe.io › blog › javascript-return-multiple-values-function

How to Return Multiple Values from a Function in JavaScript - Sabe.io

In this post, we looked at how to simulate returning multiple values from a single function. Simply take advantage of either array destructuring or object destructuring to set multiple variables from a single return.

How to Return Multiple Values from a Function in JavaScript - Sabe.io

https://flaviocopes.com › javascript-return-multiple-values

How to return multiple values from a function in JavaScript

How can we return multiple values from a function? One easy trick is to return an array. const getDetails = () => { return [37, 'Flavio'] } This is fine, and we can get the values in this way thanks to array destructuring: const [age, name] = getDetails() Now we have the age and name variables that contain those values.

https://www.techiedelight.com › return-multiple-values-javascript

Return multiple values from a function in JavaScript

This post will discuss how to return multiple values from a function in JavaScript. 1. Using an Array. We can return an array that contains the multiple values we want to return, and then access them by their index or use the destructuring assignment syntax to unpack them into variables.