Answers for "javascript multiple arguments with variables"

0

js push multiple arguments

var a = [];
a.push(1, 2, 3);
console.log(a);
Posted by: Guest on April-20-2020
-1

how to create multiple variables in a loop python

# i gets added to the end of the var name
i = 1
for n in range(5):
    globals()["w" + str(i)] = ###Do what you want here
    i += 1
Posted by: Guest on April-22-2020

Code answers related to "javascript multiple arguments with variables"

Python Answers by Framework

Browse Popular Code Answers by Language