Quick actions

cmd+k|ctrl+k

Navigation

Languages

array

Snippet info

Language

JavaScript

Visibility

public

Author

adislamay19

Created

2020-04-24T02:04:52Z

Updated

2020-04-24T02:05:12Z

    let myArray = ["Coklat", 42.5, 22, true, "Programming"];
    console.log(myArray);
     
    /* output:
    [ 'Coklat', 42.5, 22, true, 'Programming' ]
    */
INFO