Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
FizzBuzz in JavaScript
Krakob
Jun 8th, 2014
216
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
JavaScript
0.23 KB
| None
|
0
0
raw
download
clone
embed
print
report
for
(
var
i
=
1
;
i
<=
20
;
i
++
)
{
var
str
=
""
;
if
(
i
%
3
===
0
)
{
str
=
"Fizz"
;
}
if
(
i
%
5
===
0
)
{
str
+=
"Buzz"
;
}
if
(
str
===
""
)
{
str
=
i
;
}
console.
log
(
str
)
;
}
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
Untitled
3 min ago | 0.29 KB
December smells like money
CSS | 3 min ago | 0.29 KB
Untitled
50 min ago | 62.47 KB
Kibana / Custom Visualization via Vega - Stre...
JSON | 2 hours ago | 1.82 KB
Kibana / Custom Visualization via Vega - Pie
JSON | 2 hours ago | 1.44 KB
Untitled
2 hours ago | 12.01 KB
Kibana / Custom Visualization via Vega - Pare...
JSON | 2 hours ago | 1.67 KB
Untitled
2 hours ago | 62.53 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!