JavaScript: Building strings with loops
Instructions
Loading...
Your exercise will be checked with these tests:
import { expect, test } from 'vitest';
import f from './index.js';
test('test', () => {
expect(f('Bran')).toEqual('rn');
expect(f('')).toEqual('');
expect(f('Hexlet')).toEqual('elt');
});
Teacher's solution will be available in:
20:00
