for(var i = 1; i<=150 ; i++)
{
    if(i%3==0)
    {
        console.log("Fizz "+i);
    }
    if(i%3==0 && i%5==0)
    {
        console.log("FzzBuzz "+i);
    }
    if(i%5==0)
    {
        console.log("Buzz "+i);
    }
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: