#16 JavaScript Tutorial | Introduction to Array




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”

  1. 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..?

  2. 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

Leave a Reply