Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. function ScaleBalancing(inputone, inputtwo) {
  2. let firstArr = Array.from(inputone);
  3. let secondArr = Array.from(inputtwo);
  4.  
  5. let concatArr = Array.from(inputone + inputtwo);
  6. console.log(concatArr);
  7.  
  8.  
  9. }
  10. ScaleBalancing(inputone, inputtwo);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement