PASTEBIN
| #1 paste tool since 2002
create new paste
tools
api
archive
real-time
faq
PASTEBIN
create new paste
trending pastes
sign up
login
my settings
my profile
Public Pastes
Untitled
1 sec ago
Multiple layers in...
2 sec ago
Untitled
2 sec ago
www.onixsat.com.br
11 sec ago
Vim colorscheme ch...
8 sec ago
Untitled
8 sec ago
Lana Del Rey Video...
9 sec ago
netload report plugin
20 sec ago
Untitled
By: a guest on Jan 28th, 2012 | syntax:
JavaScript
| size: 0.17 KB | hits: 18 | expires: Never
download
|
raw
|
embed
|
report abuse
Copied
var
isEven
=
function
(
x
)
{
if
(
x
%
2
===
0
)
{
return
true
;
}
else
{
return
false
;
}
}
;
var
isOdd
=
function
(
x
)
{
return
!
isEven
(
x
)
;
}
;
create a
new version
of this paste
RAW Paste Data
var isEven = function (x) { if (x % 2 === 0) { return true; } else { return false; } }; var isOdd = function (x) { return !isEven(x); };