JavaScript arrays are used to store multiple values in a single variable. An array in JavaScript can hold different elements We can store Numbers, Strings and Boolean in a single array. Also arrays in JavaScript are dynamic in nature, which means its size can increase or decrease at run time.
For Program code, info & more resources checkout this article – https://simplesnippets.tech/scope-of-variables-in-javascript/
Strict mode of browser – https://www.w3schools.com/js/js_strict.asp
Video by – Tanmay Sakpal
Simple Snippets Channel link – https://www.youtube.com/simplesnippets
Original source
10 responses to “#16 JavaScript Tutorial | Introduction to Array”
Excellent Videos. Thanks much Tanmay.
Hello Tanmay thanks for all videos and support…Those are really helpful.. I have one question as arrays as some predefined methods like push…can we say that it acts as ArrayList we have in java..?
Sir, is this series will help in Machine Learning to solve algorithms ?
๐๐๐๐๐:-):-)
Thank you sir…for your awsome content delivering
Thanks sir I have learned lot from you and I hope I will be a good coder with your support
What is the limit to store data in array?
Where is the data stored in real world scenario?
Sir if possible please make a series of vue js!
object are very esy its just like this
var person = {
name = "killer",
age="20",
hobby = "programing"
}
//you can also add function
in the properties of object
document.write (person.age+" "+person.hobby+" "+person.name)
result*
20 programing killer
1st