Quick actions

cmd+k|ctrl+k

Navigation

Languages

first_javascript

Snippet info

Language

JavaScript

Visibility

public

Author

ganesh26

Created

2020-08-01T14:01:23Z

Updated

2020-08-01T14:01:23Z

console.log("Hello World!");
const boxes = ["zero", "one", "two", "three" , "four" , "five" ];
function firststep(boxes)
{
    
    let i = 0
    
    for(i = 0 ; i < boxes.length ; ++i)
    {
        console.log(boxes[i]);
    }
    
}


firststep(boxes);
INFO