#!/usr/local/bin/node for (var i = 1; i <= 30; i++) console.log( (i % 3 == 0 ? 'Fizz' : '') + (i % 5 == 0 ? 'Buzz' : '') || i );