Skip to content

Instantly share code, notes, and snippets.

View meliga's full-sized avatar

Diedro Meliga meliga

View GitHub Profile
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>email</title>
</head>
<body>
<table align="center" border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" id="m_-6577099508949620788m_1395061906036265660bodyTable" style="border-collapse:collapse!important;height:100%!important;margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;width:100%;background-color:#f0f0f0">
<tbody>
<tr>
@meliga
meliga / .js
Last active May 20, 2017 17:46
FizzBuzz - JavaScript Eloquente
for (counter = 0; counter <= 100; counter++)
if (counter % 5 == 0 && counter % 3 == 0)
console.log("FizzBuzz");
else if (counter % 3 == 0)
console.log("Fizz");
else if (counter % 5 == 0)
console.log("Buzz");
else
console.log(counter);