#!/usr/local/bin/node (fizzbuzz => { for (const i of Array(30).keys()) console.log(fizzbuzz(i+1)) })( n => `${n % 3 ? '' : 'Fizz'}${n % 5 ? '' : 'Buzz'}` || n );