Guest User

Untitled

a guest
Oct 25th, 2016
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. $(function() {
  2. // good opportunity to combine into a single statement
  3. // qq w cw <esc> A, <esc> 0 j q
  4. var a = 10;
  5. var b = 20;
  6. var c = 30;
  7. var d = 40;
  8. var e = 50;
  9.  
  10. // opportunity to simplify syntax
  11. // 0 w x w x
  12. // qq f'x f; <esc> j q
  13. // v4j:s/'//g
  14. var Apartment = {
  15. 'rooms': 3,
  16. 'bathrooms': 2,
  17. 'laundry': false,
  18. 'parking': false
  19. };
  20. });
Add Comment
Please, Sign In to add comment