JavaScript: Increment and decrement
Instructions
Tips
Loading...
Your exercise will be checked with these tests:
import { expect, test } from 'vitest';
import f from './index.js';
test('test', () => {
const text = 'I never look back';
expect(f(text, 3)).toEqual('I NevEr LooK bAck');
expect(f('hello', 2)).toEqual('hElLo');
});
Teacher's solution will be available in:
20:00
