Advertisement
Guest User

Untitled

a guest
Aug 26th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. // Nicely written function:
  2. var calculate = function (number) {
  3. var val = number * 10
  4. console.log(val);
  5. }
  6.  
  7. // Badly written function with syntax errors!
  8.  
  9. var greeting = function(name) {
  10. console.log(name); }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement