Skip to main content

Code Golf · #3 · 2026-04-07

Check if even

Difficulty 1/3 · JavaScript

How to play

Write a JavaScript function body that passes all test cases using the fewest characters. Run against examples first, then submit for the full test suite. Eagle < Birdie < Par.

Given a number, return true if it is even, false otherwise.

Examples

f(4) true
f(7) false

Loading your progress...

Your code (function body — receives input)

function(input) { 0 chars
}

Write the shortest JavaScript function body that passes all tests · Back to hub