Interviewer And Interviewee Guide

Expert Developer JavaScript Interview Question:

How to create an array in JavaScript?

Submitted by: Administrator
► We can create an array in JavaScript as following ways :
► For example :
<script>
var fruits = new Array[];
fruits[0] = "Apple";
fruits[1] = "Orange";
fruits[2] = "Banana";
alert(fruits[1]);
</script>
► It will give output : Orange
► Another easier way to create an array is as follow :
<script>
var fruits = ["Apple","Orange","Banana"];
alert(fruits[0]);
</script>
► This will give output : Apple
Submitted by:

Read Online Expert Developer JavaScript Job Interview Questions And Answers
Copyright 2007-2024 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.