why array is called the collection of similar datatypes?
Answer / guest
Array is called the collection of similar datatypes because
we can not add an object of some other type where as the
array which is declared is of another type.
For e.g
We declare a Integer array then we can not add an object of
type string into that array.We have to add an object of type
string only.
Is This Answer Correct ? | 7 Yes | 1 No |
Which javascript framework is in demand?
What is Unobtrusive JavaScript & Why it's Important?
What is the function of deferred scripts?
What would you use javascript for?
What is a module in javascript?
Is javascript insecure?
What is the difference between undefined value and null value?
In javascript chained select menus are available.first select menu is worked and others are disabled.when we select any one option then the next select menu will worked having option releated to selcted in first select menu.How it possible? what is the coading of this programme?
Explain what is javascript? List some data types supported by javascript?
Consider the following code: 1 2 3 4 5 (function() { var a = b = 5; })(); console.log(b); what will be printed on the console?
What is the difference between "var" and "let" keywords?
What is null variable?