Quick actions

cmd+k|ctrl+k

Navigation

Languages

Perulangan dengan while

Snippet info

Language

JavaScript

Visibility

public

Author

saiya-man

Created

2019-08-22T06:16:46Z

Updated

2019-08-22T06:16:57Z

let x = 1;
while(x <= 10)
{
    console.log('Perulangan ke ' + x );
    x++;
}
INFO