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? (I assume using an array?)
You need to either use an array or an object.
For example: