in Technology by
how to print two arrays side by side 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 together 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
    Is it possible to remove ( not hide using display:none ) some part of HTML from source for mobile ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jan 15, 2022 in Education by JackTerrance
0 votes
0 votes
    Which side of the image map can be created using JavaScript? (a) Server side (b) Client side (c) ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Oct 23, 2021 in Education by JackTerrance
0 votes
    Which of the following are client-side JavaScript object? (a) Database (b) Cursor (c) Client (d) ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Oct 22, 2021 in Education by JackTerrance
0 votes
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
...