in Technology by
how to print two arrays together in Javascript?

1 Answer

0 votes
by
var array = [1,2,3,4,5,6,7,8,9,10] var brray = ["one","two","three","four","five","six","seven","eight","nine","ten"] for( i = 0 ; i < array.length ; i++){ console.log(array[i], brray[i])

Related questions

0 votes
    how to print two arrays side by side in javascript?...
asked Dec 10, 2020 in Technology by JackTerrance
0 votes
    Can arrays in JavaScript be extended? 1. Yes, they can be 2. No, they cannot be 3. May be, they can be extended conditionally...
asked Feb 24, 2021 in Technology by JackTerrance
+1 vote
    Can arrays in JavaScript be extended? a)Yes, they can be b)No, they cannot be c)May be, they can be extended conditionally...
asked Oct 8, 2020 in Technology by JackTerrance
0 votes
    I am using an array in order to calculate large powers of 2. The arrays add to each other and ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 17, 2022 in Education by JackTerrance
0 votes
    given two arrays A and B where A which contains coefficient of a system equations and B which contains ... given system of equation Select the correct answer from above options...
asked Dec 20, 2021 in Education by JackTerrance
0 votes
    1. Name the term which is used to join two separate arrays into a single array. 2.How are the following ... ii) primitive type data Select the correct answer from above options...
asked Dec 13, 2021 in Education by JackTerrance
0 votes
    5. Write a program to read and store the following data in two different arrays. Using Binary Search Method search for ... 85, 72, 89 Select the correct answer from above options...
asked Dec 15, 2021 in Education by JackTerrance
0 votes
    1. Name the term which is used to join two separate arrays into a single array. 2. How are the following ... answer fast I want please Select the correct answer from above options...
asked Dec 13, 2021 in Education by JackTerrance
0 votes
    malo 4. Name the term which is used to join two separate arrays into a single array. 5. How are the following passed to the functions? Select the correct answer from above options...
asked Dec 13, 2021 in Education by JackTerrance
0 votes
    how to print to screen in javascript?...
asked Dec 10, 2020 in Technology by JackTerrance
0 votes
    How to print to console javascript?...
asked Dec 10, 2020 in Technology by JackTerrance
0 votes
    how to print NODE_PATH in Javascript?...
asked Dec 10, 2020 in Technology by JackTerrance
0 votes
    I Know I can do this with static HTML, but I want to create dynamically, and I am struggling a ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 12, 2022 in Education by JackTerrance
0 votes
    I Know I can do this with static HTML, but I want to create dynamically, and I am struggling a ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 8, 2022 in Education by JackTerrance
0 votes
    I have function of "endgame" and here's how the function goes function endgame() { setScreen("scorescreen" ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 6, 2022 in Education by JackTerrance
...