Interview Questions Answers.ORG
Interviewer And Interviewee Guide
Interviews
Quizzes
Home
Quizzes
Interviews Scripting language Interviews:AngularJSAngularJS DeveloperChrome FrameDojoExpert Developer JavaScriptExpert JavaScript DeveloperExt CoreEXT-GWTExt-JSFront End Developer (AngularJS)JQuery DeveloperjQuery MobileJQuery ProgrammerJQuery UIMooToolsPrototype FrameworkQooxdooScriptingSencha TouchSizzle Selector EngineSWFObjectWeb Font LoaderXMLHttpRequest
Copyright © 2018. All Rights Reserved
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:
► 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:
Copyright 2007-2025 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.

https://InterviewQuestionsAnswers.ORG.
