JavaScript cek apakah angka adalah kelipatan 3

var num 

num = prompt('Enter the number')


if (num % 3 == 0)
	document.write('Multiple of 3')
else 
  document.write('Not a multiple of 3')



Clean Constrictor