Quick actions

cmd+k|ctrl+k

Navigation

Languages

Perulangan FOR

Snippet info

Language

JavaScript

Visibility

public

Author

manxglot

Created

2019-08-05T19:39:56Z

Updated

2019-08-05T19:39:56Z

var x = 0;
var y = 9;
       while( x <= y ){
   		if(x%2==0)
   		{
   			console.log('Nomor: ' + x );
   		}
   		
   		x++;
   	}
INFO