Advertisement
mahlichavpm

Untitled

Jan 9th, 2022
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.22 KB | None | 0 0
  1. function project(input){
  2.    
  3.     var name = input[0]
  4.     var jobs = input[1]
  5.  
  6.     var time = jobs * 3
  7.  
  8.     console.log("The architect " + name + " will need " + time + " hours to complete " + jobs + " project/s.")
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement