JavaScript: Data aggregation (strings)
Instructions
Loading...
Your exercise will be checked with these tests:
import { expect, test } from 'vitest';
import f from './index.js';
test('test', () => {
expect(f(2, 2)).toEqual('2');
expect(f(1, 5)).toEqual('12345');
expect(f(10, 12)).toEqual('101112');
});
Teacher's solution will be available in:
20:00
