Advertisement
Militsa

02. Multiply Two Numbers

Dec 23rd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function number(nums) {
  2.     let num = Number(nums[0]);
  3.     return num * 2;
  4. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement