Quick actions

cmd+k|ctrl+k

Navigation

Languages

Perulangan dengan Do..while

Snippet info

Language

JavaScript

Visibility

public

Author

saiya-man

Created

2019-08-22T06:18:55Z

Updated

2019-08-22T06:18:55Z

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