JavaScript: Boolean type
Instructions
Loading...
Your exercise will be checked with these tests:
import { expect, test } from 'vitest';
import f from './index.js';
test('test', () => {
expect(f(23)).toBe(false);
expect(f(70)).toBe(true);
expect(f(60)).toBe(true);
expect(f(59)).toBe(false);
});
Teacher's solution will be available in:
20:00
