JavaScript: Predicates
Instructions
Tips
Loading...
Your exercise will be checked with these tests:
import { expect, test } from 'vitest';
import f from './index.js';
test('test', () => {
expect(f('8234782')).toBe(false);
expect(f('Joker')).toBe(false);
expect(f('Mister')).toBe(true);
});
Teacher's solution will be available in:
20:00
