Kütahya Katı Atık Yönetimi A.Ş.
  • E-posta info@kutahyaatik.com
  • Telefon / Faks 444 6533 / 0 274 231 1327
Kütahya Katı Atık Yönetimi A.Ş.

create dynamic variable in for loop javascript

create dynamic variable in for loop javascript

I will not always know how many items are in the array . Achieve this using this, which is for the current scope in the program − As you can see we have a set of example data inside the single array which is the array_data variable, and we have also a data_holder variables. When creating objects in a loop, one usually puts them into a Collection as they are made. The For Loop is the most basic way to loop in your JavaScript code. JavaScript Arrays are Dynamic in nature it means, the length of array can be modified at run time (when necessary). I will use these variables later on in the script. eval (): The eval () function evaluates JavaScript code represented as a string in the parameter. It can be a great debugging tool if we want to show the contents of an object. JavaScript: Dynamically Creating Variables for Loops. Unlike most languages where array is a reference to the multiple variable, in JavaScript array is a single variable that stores multiple elements. Developers can use loops to execute the same block of code over and over again depending on different criteria. Now, you may be confused by what the fudge I mean by 'Dynamically Creating Variables' as in its essence, a variable is itself, dynamic. JavaScript Array Loops. You can use a loop & string interpolation to achieve the desired results. The continue statement can be used to restart a while, do-while, for, or label statement.. var. The variable text should be declared outside the loop. The ECMA-/Javascript language hoists any variable which is declared with var anywhere to the top of a function. How do I create dynamic variable names inside a JavaScript loop? We'll also create two variables to keep track of the total number of tasks and the completed tasks. Using it also we can create a dynamic variable which will run on our browser. In fact, if you console.log the value of the HTML variable inside the loop, 5:30. you can explicitly see how the loop builds the string from 5:36. one div tag to two, to three, all the way to 20 div tags. The task is to match a character that changes in every iteration of the loop using the following regular expression. Sample Dynamic loop . 5:41. Using the exec command In the above program, I initially declared an empty dictionary and added the elements into the dictionary. This time there is a SVG in the HTML, but it has no viewBox, width or height attributes. It allows you to group HTML elements with dynamic data together, as shown in this guide. I have checkboxes which is generated within loop of records come from db and append the id with the name and id like this <input type=checkbox name=CB.<?=$id?> name=CB.<?=$id?> > Now in extension. var1 = 'bread'. If you like my response, please give it a Thumbs Up. Of code, unlike delete let variable javascript variable declared by the var statement in TypeScript be. However, we can simply do this by using for loop as an example. In contrast to the break statement, continue does not terminate the execution of the loop entirely. The task is to create an HTML form dynamically with the help of JavaScript. Along with that, we will be implementing the . Go to Solution. And since the Name parameter takes a string, it's quite easy to create a dynamic name using a loop on our prefixes array, and by using an expression in the string to dynamically build our variable name. For-in loop in JavaScript is used to iterate over properties of an object. ele is blank at initial stage, so we will copy the elements of "arr" in array "ele". Then we assign objects [x] to an object with the name property set to 'foo' as its value. We make use of cookies to improve our user experience. The loop continues for all object properties. Using for loop and createElement() to Print out Array Content in JavaScript. Now, if you still really want to create variables with dynamically generated names, you need to use EVAL. The for Loop. The second part, i 5 is a condition where it checks whether i is less than 5 or not. Notice that I'm using the Force switch to make sure that the variables will be created even if a variable with the same name exists already. The for-in loop iterates only over those keys of an object which have their enumerable property set to "true". As a data type, an object can be contained in a variable. Remember that a multi-dimensional array, sometimes called a 2D array, is just an array of arrays, for example, [[1,2], [3,4], [5,6]]. More rectangles please, let's loop. ).This causes the index to dynamically update with each iteration. Using the createElement() method , you can easily create any DOM element dynamically. JavaScript directly allows array as dynamic only. In line 39, we use the innerHTML property to access the array [i] [j] and read and write data and assign it to the corresponding empty rows and columns created above. The "For" Loop. How to create dynamic table using JavaScript? var2 = 'milk'. The "while" loop is the most fundamental loop in JavaScript. In addition to right answer of Sachin Nayak, another way to solve this issue is to use let instead of var.let creates a variable inside the scope of the loop where var will be a global variable that will be overwritten at every iteration. In JavaScript, dynamic variable names can be achieved by using 2 methods/ways given below. JavaScript Arrays are dynamic in nature, which implies that their length can be changed at the time of execution. Approach 1: Use document.createElement () to create the new elements and use setAttribute () method to set the attributes of elements. The syntax of the for.in loop is: for (key in object) { // body of for.in } In each iteration of the loop, a key is assigned to the key variable. function createVariables() { for ( i=0; i<=20; i++ ) { var account = i; return var account + i; } } . Dynamic variable in loop javascript. Viewed 115k times 66 25. Ask Question Asked 10 years, 9 months ago. How do I create dynamic variable names inside a JavaScript loop? Method 2: using the Window object In the browser, the window object is the global object. A string is passed as a parameter to eval (). The number 10 in the for loop is a magic number - you should replace it with a descriptive constant, especially if it's used somewhere else too to refer . If you do not, then it may result in an infinite loop. First login to SendGrid dashboard with your credentials. Now, you may be confused by what the fudge I mean by 'Dynamically Creating Variables' as in its essence, a variable is itself, dynamic. Basically what I mean is I am going to show you some AMPscript that will loop through and create multiple variables without needing to write out each one. I am trying to go through a data table and assign each row to a variable that includes the row number. I found something about eval and window but I don't know how to use this. When the button is pressed the reference to the correct value is passed to OnClick - and the correct Id is displayed. . There are four variables in the JavaScript block. It is very handy to execute a block of code a number of times. This tutorial shows you how to use Pug to create dynamic ids for DOM elements Methods to loop through objects using javascript for.in Loop. By the time, the for loop reaches the last iteration, the i variable will end up holding the last index value. At the moment, i've wrtite every single variable. These unique names are called identifiers. Only then do we need to look at changing the upper level loop variables. Using component loops to output and manipulate data is a common development method in React. All JavaScript variables must be identified with unique names. Dynamic Array in JavaScript means either increasing or decreasing the size of the array automatically. They also permit you to add or remove elements at run-time and then automatically update their size after executing the specified operations. The following HTML example contains the HTML, CSS, and JavaScript necessary to build a dynamic HTML table. Create dynamic variable names inside a JavaScript loop. The above example will create multiple dynamic variables every time the for loop executes the code inside it. The for loop is used to iterate a block of code multiple times as desired by the developer. We'll take the tasks information from the markup and store it in a todos array. var3 = 'cheese'. In this Article i will use a for loop to loop through all element contain inside an Array and then print out the Value line by line when the user click the " check What is inside " button . That's why the output will always be the last index, in my case, 5. I personally prefer the JavaScript and I have explained it in the above example. And we use the numbers as property names with objects [x]. Javascript answers related to "create variable names dynamically javascript" can the name of function be the same with name of variable js change variable inside function js Javascript Front End Technology Object Oriented Programming. Javascript Front End Technology Object Oriented Programming. In this lesson, I'll show you how to create a dynamic array object using JavaScript. while (condition) { // code // so-called "loop body" } Answer. Identifiers can be short names (like x and y) or more descriptive names (age, sum, totalVolume). Then you assign something into one of those entries. Viewed 3k times 1 I want to create a dynamic variable in the loop. The "while" loop. In this problem you have to complete the multiplyAll() function, and takes a multi-dimensional array as an argument. Creating an Object. Also note that MATLAB variable names cannot have the dot character in them, so your example variable names are invalid and would not work, even though you incorrectly state that "you can call them pic1.png, pic2.png, pic3.png, pic4.png".This should also give you a hint as to one reason why your approach of dynamically naming variables based on a filenames is a really bad idea (hint: consider . We got your back. The last iteration of i will be i = 1189 . Note: Once you get keys, you can easily find their corresponding values. All these three parts are separated by semicolon ; At the end i want to get every value, separated by comma, and fill a "input". Append these elements to the <form> element by appendChild () method. Expand | Select | Wrap | Line Numbers. I am going to console log i variable outside of the for loop} // end of for loop console.log(i); The task is to create an HTML form dynamically with the help of JavaScript. the loop will increment through fish[0], fish[1], etc. You might also add an if statement inside the loop that for example checks 5:50. This tutorial will teach you how to create a dynamic HTML table through the use of Javascript and Document Object Model (DOM) manipulation. The ECMA-/Javascript language hoists any variable which is declared with var anywhere to the top of a function. Loops are repetitive programming structures that every Mirth developer needs to master. JavaScript for.in loop. The third part, i++ is iteration statement where we use ++ operator to increase the value of i to 1. We no need to write extra logic to perform these operations. skanda1395 December 14, 2019, 10:59am #1. Here is an example that uses the for.in loop to iterate over an object: Wrap Up. Statement 2 defines the condition for the loop to run (i must be less than 5). Hopefully you can see that you should either: Stick to the standard foreach loop - it's fairly bulletproof. We'll add a variable for how many rectangles, width and height. Let's get back to it with dynamic element creation. Array length can be specified after declaring array as shown in the following example. It uses a counter, whose value is first initialized, and then its final value is specified. Then we add a for loop that loops through some numbers. 1. JavaScript variables declare outside or inside loop? It asks for a new dynamic template name as shown below. The general rules for constructing names for variables (unique identifiers) are: Names can contain letters, digits, underscores, and dollar signs. Our Todos.svelte component is currently just displaying static markup; let's start making it a bit more dynamic. In this tutorial, I will be creating a scoreboard for a Javascript video game and the data will be coming from a fetch request. In the above example, var i = 0 is an initializer statement where we declare a variable i with value 0. It is also used for validating different data which is fed into the website and also different functions, scripts and logic can be implemented on the webpage using Javascript. The syntax for while. for (var i = 1; i <= 5; i++) { this ["v"+i] = "Variable " + i; } console.log (v1); //Variable 1 console.log (v2); //Variable 2 console.log (v3); //Variable 3 console . JavaScript for-in Loop. Use a local loop variable if you have to . Every iteration of k, you throw away whatever was in C and replace it with a cell array containing empty entries. In the given example, the code in the loop will run over and over again, as long as a variable (i) is less than 10. JavaScript Loops. Plus keeping each method straight can drive a developer nuts. Ask Question Asked 7 years, 10 months ago. We create an empty object and assign it to the objects variable. JavaScript is a programming language that is developed mainly for website technology. create dynamic variables within for loop java iterate on a dynamic variable name javascript dynamic use already assigned variables in loop js change variable name in for loop react native add index to variable name javascript for create var with i in name loop variable name javascript loop variable named index javascript The inputs array stores DOM nodes and then you can iterate over this to get the value as in the console.log below OR you can store the values in the input array if you don't want the DOM nodes anymore. The number of table rows and cell content will vary depending on your data. For example, eval ('A=10') has the same effect as A=10, and eval ( ['A' 'B' '=10']) has the same effect as AB=10, only the EVAL method . JavaScript variables declare outside or inside loop? Will create a dynamic variable in JavaScript instead of re-declaring the variable of window object, we an! As a result, we see that the value of objects is: How do create an email template in SendGrid? Approach 1: Use document.createElement () to create the new elements and use setAttribute () method to set the attributes of elements. In JavaScript, you can choose dynamic values or variable names and object names and choose to edit the variable name in the future without accessing the array. Code: # dynamic # generatevariables Sometimes i feel like - put my hands up in the air .. no, sorry this post was not about songs and lyrics and putting your limbs airborne .. it's about my old issue that I thought I can't pull with javascript - but I was wrong. With EVAL, you use MATLAB commands to generate the string that will perform the operation you intend. but this is stupid. Using Array Literal, Array Default Constructor, and Parameterized Constructor, you can create dynamic arrays in JavaScript. flounder salmon pike In this example, we increment through each index of the array with fish[i] (e.g. Look at the following code below. The most straightforward way to loop through an object's properties is by using the for.in statement. Javascript answers related to "create variable names dynamically javascript" can the name of function be the same with name of variable js change variable inside function js Basically what I mean is I am going to show you some AMPscript that will loop through and create multiple variables without needing to write out each one. To do, so you can create a variable and assign it a particular value. In the next tutorial, we will create a dynamic table using JavaScript and add new row, remove a row, and edit a row in a table. Then I assumed the values from the for loop to the dynamic variables. If you're having trouble understanding freeCodeCamp's Nesting For Loops challenge, don't worry. Next, Click on Create a Dynamic Template. When the button is clicked ; 10 are discussing how to use the var keyword and initialize the variable (. We have already covered the for loop in detail in the JavaScript Flow Control Tutorial. An object is a JavaScript data type, just as a number or a string is also a data type. JavaScript is not typed dependent so there is no static array. The key values in an object have four attributes . This method works in all modern and old browsers including Internet Explorer 6 and higher. Well, variables in the global scope (i.e. There is a classic JavaScript for loop, JavaScript forEach method and a collection of libraries with forEach and each helper methods. The counter is increased by a specific value every time the loop runs. Using for loop and createElement() to Print out Array Content in JavaScript. i is a Global Variable. Modified 1 month ago. Note that x is defined although we didn't use var x = anywhere. There are two approaches that are discussed below. We now set a local loop variable and reference that within the loop. To implement a dynamic nested loop we need to increment the inner most loop variable until we run out values. We can perform adding, removing elements based on index values. That means that with let you don't overwrite the value, but create a new one at each iteration, thus the reference stays intact. Variables shouldn't be declared inside a loop, unless you're using let. You can use break and continue in a while loop. That is because this language does have function scope and does not have block scope like many other C-like languages. Subash Chandran 24th September 2020 Leave a Comment. There are different ways to loop over arrays in JavaScript, but it can be difficult choosing the right one. When you use continue without a label, it terminates the current iteration of the innermost enclosing while, do-while, or for statement and continues execution of the loop with the next iteration. Statement 1 sets a variable before the loop starts (let i = 0). This would generally be impossible to do in a pure JavaScript app without DOM queries. JavaScript has three different loops that you can utilize. But when you use the while loop you should take into account the increment for the next iteration. Once the expression becomes false, the loop ends. Parse error: syntax error, unexpected '' (T_ENCAPSED_AND_WHITESPACE), expecting '-' or identifier (T_STRING) or variable (T_VARIABLE) or number (T_NUM_STRING) set border phpoffice phpexcel php ofreach There are two approaches that are discussed below. Javascript - dynamically generated variable names! Statement 3 increases a value (i++) each time the code block in the loop has been executed. So the item in row 0 would get assigned 'item_0' and the item in row 1 would be 'item_1' and so forth.This data table is dynamic though and could contain any number of rows, so it would have to account for that. 01-09-2020 04:55 AM. JavaScript is used to make webpages more dynamic and attractive. You can't Initialize a Variable in a loop, but you can change the value using Set Variable or Increment Variable inside a loop. Modified 7 years, 10 months ago. Creating Dynamic RegExp Objects. Given here is a solution that shows how a dynamic loop can be implemented. How can I use a for loop to dynamically create variables, and be returned. let regexp = new RegExp ("" + [^char] + ""); The problem is, when I run the code, I get the following error: SyntaxError: Unexpected token ^. In the above code, we have passed the regex pattern as an argument to the replace() method instead of that we can store the regex pattern in a variable and pass it to the replace method.. Code: ' in a normal module Public myObjects As New Collection Sub MakeObjects () Dim i As Long Dim oneObject as Class1 For i = 1 to 10 Set oneObject = New Class1 oneObject.Index = i . Recommended JavaScript Working with Images. Which is the smartest way to create a loop to get every single "radio value selected" and pass it to a specific variable? If the string represents an expression, eval () evaluates the expression. The while loop executes its statement or code block repeatedly as long as a specified condition is true. I came up with three ways to do this in Python. . Learn how to create variable dynamically inside a JavaScript for loop. Well, that's it. This is my loop and i want to create a 9 variables names from m1 to m9. Append these elements to the <form> element by appendChild () method. You can modify the variable's values to adjust the number of rows in the table, the number of cells within each row, and the minimum and maximum range of numbers that are used in random . Create dynamic ids in a loop using Pug. But because window.x is the same as window["x"], we can use the bracket notation to dynamically create (global) variable names from . Javascript Web Development Front End Technology To achieve this, you need to add properties to the current scope. 1. By the time you reach the end of the k loop, only the last of the entries will have anything stored in it. Agree Learn more Learn more This would result in these variables being created etc: $dynamic1 = 'val1' $dynamic2 = 'val2' $dynamic3 = 'val3' However I can't work out how to create a dynamic variable name in javascript. JavaScript dynamically load script file to create an object and then run .init() on that object 0 Is There a Way to Dynamically Reference Variables Declared with let and const In this tutorial, we will review how to create an object, what object properties and methods are, and how to access, add, delete, modify, and loop through object properties. That is because this language does have function scope and does not have block scope like many other C-like languages. Here is an example using a custom Class that has an .Index property. not inside a function) are just properties of the window object: window.x = 99; console.log(x); // 99. If I have answered your question, please mark your post as Solved. In this dynamicVar, I am creating dynamic variable "ele [i]" in which I will put value/elements of "arr" according to index. In the left navigation, click on Email API - Dynamic Templates option diagram shown below. I used string concatenation method to declare dynamic variables like x1, x2, x3……. 01-09-2020 04:55 AM. It's always the same so re-declaring it 10 times is unnecessary. Note: Regex can be created in two ways first one is regex literal and the second one is regex constructor method (new RegExp()).If we try to pass a variable to the regex literal pattern it won't work. We'll set the size of the SVG dynamically, depending on how many rectangles we create in the loop. By using this website, you agree with our Cookies Policy. for i in arr: print i. but instead of printing i, I want the for lopp to assign each iteration to a unique variable, so that when the for loop completes. Over again depending on how many rectangles, width or height attributes show the contents of object... Takes a multi-dimensional array as an example you should take into account increment... Later on in the loop has been executed will run on our browser that every developer. Total number of table rows and cell content will vary depending on how rectangles! Increase the value of i to 1 by a specific value every time the loop make more! Choosing the right one RegExp objects - JavaScript - the... < >. Already covered the for loop is used to make webpages more dynamic and attractive as.., totalVolume ) not terminate the execution of the k loop, only the index! Without DOM queries two variables to keep track of the k loop, JavaScript forEach method a... Condition where it checks whether i is less than 5 or not you... 9 months ago time you reach the end of the entries will anything... With eval, you use the var keyword and initialize the variable ( on how many items are in loop... As shown in this problem you have to complete the multiplyAll ( ) to Print out array in. Values in an object & # x27 ; ve wrtite every single variable variable... Objects using a custom Class that has an.Index property that & # x27 ; s it a. Easily create any DOM element dynamically using it also we can perform adding, removing elements based index... Using the window object is a SVG in the loop will increment through [. A specific value every time the loop using for loop to the correct Id is..: Once you get keys, you agree with our Cookies Policy you to add or remove elements at and. M1 to m9 with dynamic element creation here is an example Mirth developer needs to master content vary... No need to add or remove elements at run-time and then automatically update their size after executing specified! Completed tasks declared by the time you reach the end i want to create the elements! Dynamic Email template tutorials with examples... < /a > JavaScript - Motion Tricks < /a Creating... Causes the index to dynamically create variables, and then automatically update their size after executing the specified operations as... Repeatedly as long as a specified condition is true - dynamically generated variable names var2 = #. In detail in the browser, the length of array can be changed at the time of.! Your data can simply do this by using for loop JavaScript for loop run... Variables like x1, x2, x3…… tool if we want to the! For & quot ; loop button is clicked ; 10 are discussing to... Setattribute ( ) function evaluates JavaScript code represented as a data type, object! Generated variable names inside a JavaScript loop make webpages more dynamic and attractive something one! See that you can use loops to execute a block of code, unlike delete let variable variable! This language does have function scope and does not have block scope like many other C-like languages and old including... Of the entries will have anything stored in it content will vary depending on how many rectangles create. Initialized, and takes a multi-dimensional array as an example using a for loop the! I create dynamic variable which is declared with var anywhere to the break statement, continue does have. The specified operations example using a for loop in detail in the loop ends the total of! Descriptive names ( like x and y ) or more descriptive names ( age,,. Number of table rows and cell content will vary depending on different criteria concatenation method to set the attributes elements! Way to loop over Arrays in JavaScript is used to iterate over properties of the window is! Example checks 5:50 the & lt ; form & gt ; element by appendChild )! Following regular expression a pure JavaScript app without DOM queries been executed contents. At changing the upper level loop variables depending on how many rectangles create... Inside loop is not typed dependent so there is a classic JavaScript for loop in detail in loop. To perform these operations a number of tasks and the completed tasks content JavaScript.: //www.motiontricks.com/creating-dynamic-svg-elements-with-javascript/ '' > Creating dynamic RegExp objects browser, the length of array can be implemented and not! Is iteration statement where we use the while loop you should take into account the increment the... Items are in the array scope like many other C-like languages the dictionary the for.in statement Motion Tricks /a! The total number of table rows and cell content will vary depending on data. Passed to OnClick - and the completed tasks completed tasks i found about! In it scope and does not have block scope like many other C-like languages to 1 be i =.. Value, separated by comma, and then its final value is.. With our Cookies Policy # 1 you need to write extra logic to perform these operations the variable ( will! Passed as a data type let variable JavaScript < /a > JavaScript - the... /a... Is specified fill a & quot ; loop is used to iterate properties. ; form & gt ; element by appendChild ( ) method and over again depending on many! Your data size of the k loop, only the last of the SVG dynamically, depending your! Fill a & quot ; for & quot ; JavaScript loop program, i declared! Multi-Dimensional array as an argument a new dynamic template name as shown below given here is an.. To OnClick - and the completed tasks identifiers can be difficult choosing the right one can i use for! Names with objects [ x ] in JavaScript 7 years, 9 months.... Than 5 ) debugging tool if we want to create a 9 variables names from m1 m9! Object is a SVG in the array s why the output will always be the last of loop. Custom Class that has an.Index property the while loop perform these operations but... I must be less than 5 or not dynamic in nature it means, the using... - it & # x27 ; t use var x = anywhere C-like... < a href= '' https: //www.codecademy.com/forum_questions/51068e93f73ad4947a005629 '' > Creating dynamic RegExp objects represents an expression, eval ). As a parameter to eval ( ): the eval ( ) to the! Your data text should be declared outside the loop that for create dynamic variable in for loop javascript checks.. Does not have block scope like many other C-like languages of array can be specified after declaring as! Be returned 5 or not 99 ; console.log ( x ) ; // 99 into account the for... Internet Explorer 6 and higher = 1189 diagram shown below loop has executed. Appendchild ( ) method, you use the while loop over again depending on your.... Have answered your Question, please mark your post as Solved when the button is pressed the reference to break! Been executed i found something about eval and window but i don & x27. And we use the var statement in TypeScript be needs to master iteration i. You need to write extra logic to perform these operations in an infinite.! More descriptive names ( age, sum, totalVolume ) to iterate over properties of an object four... For how many rectangles we create in the above program, i initially declared empty. Window but i don & # x27 ; s why the output will always be last! //Www.Motiontricks.Com/Creating-Dynamic-Svg-Elements-With-Javascript/ '' > how to write a for loop that for example checks 5:50 perform the you... Iteration of the total number of times how many items are in the following example loop.... Loop to dynamically create variables, and then its final value is specified is first initialized, and be.... Then do we need to look at changing the upper level loop variables.This... And a collection of libraries with forEach and each helper methods create variables, and its! The standard forEach loop - it & # x27 ; cheese & # x27 ; s why the will... Attributes of elements y ) or more descriptive names ( age, sum, ). [ 1 ], etc through some numbers the string represents an expression, eval ( ) method you. The dynamic variables add or remove elements at run-time and then automatically update size! So there is a classic JavaScript for loop to run ( i must be less than 5 or not create dynamic variable in for loop javascript! And initialize the variable text should be declared outside the loop entirely removing elements based on index.... Variable if you do not, then it may result in create dynamic variable in for loop javascript infinite loop you... Each helper methods which will run on our browser window but i don & # x27 ; single variable classic! Statement or code block in the JavaScript Flow Control Tutorial, JavaScript forEach method and a collection libraries., fish [ 0 ], etc specific value every time the loop using the for.in statement > variables... Statement 3 increases a value ( i++ ) each time the loop 6 and.! Markup and store it in a todos array is defined although we didn & # x27 ; to! How can i use a local loop variable if you have to complete the multiplyAll ( ) method, agree! Does not have block scope like many other C-like languages 5 ) have answered Question... Id is displayed add properties to the standard forEach loop - it & # x27 ; no to!

Crochet Sunflower Granny Square Cardigan, Gucci Jersey Jacket$1,400+size Typesregularfastener Typezipperdepartmentmen, Adebayo Akinfenwa Chant, Madden 22 Pc Keyboard Controls, Are Montez And Josh Sweat Related,

create dynamic variable in for loop javascript

create dynamic variable in for loop javascript :