I am 23 years old. I work as a non-destructive testing specialist. Recently, I learned about the front-end developer profession, and this direction interested me. I learned about Rolling Scopes courses on the Internet and signed up for my first front-end development course.I always strive to learn something new and interesting.
``` const assert = require(“chai”).assert;
describe(“Multiply”, () => {
it(“fixed tests”, () => {
assert.strictEqual(multiply(1,1), 1);
assert.strictEqual(multiply(2,1), 2);
assert.strictEqual(multiply(2,2), 4);
assert.strictEqual(multiply(3,5), 15);
});
});
```
English level - A2