https://github.com/yankouskia/additional_4
Product
https://github.com/yankouskia/additional_4
Last synced: 20 days ago
JSON representation
Product
- Host: GitHub
- URL: https://github.com/yankouskia/additional_4
- Owner: yankouskia
- License: mit
- Created: 2017-02-17T17:24:52.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-20T12:55:13.000Z (over 7 years ago)
- Last Synced: 2025-03-29T03:11:16.969Z (27 days ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 1
- Watchers: 0
- Forks: 866
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Product of 2 numbers
## Task
Implement function, that for given two numbers, presented as strings will return their product
```js
multiply('1', '1') // -> '1', because 1 * 1 === 1
multiply('2', '2') // -> '4', because 2 * 2 === 4
multiply('5', '10') // -> '50', because 5 * 10 === 50
```Write your code in `src/index.js`