Guest User

Untitled

a guest
Apr 23rd, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. Objectives for JavaScript 1-8
  2. JS1
  3. Variables, Strings, and Integers
  4.  
  5. Create descriptive variable names
  6. Store numbers and strings in variables
  7. Perform math operations on numbers
  8. Increment and decrement variables
  9. Obtain a random number
  10. Find the length of a string
  11. Index into a string
  12.  
  13.  
  14. JS 2
  15.  
  16.  
  17. Arrays and Functions
  18.  
  19. Create arrays using the proper syntax
  20. Create nested arrays
  21. Index into arrays
  22. Change data inside an array using index reassignment
  23. Change data inside an array using .push(), .pop(), .shift() and .unshift()
  24. Define a function using proper syntax
  25. Pass arguments into a function
  26. Understand the difference between global scope and local scope
  27. closures
  28.  
  29.  
  30. JS 3
  31. Booleans
  32.  
  33. Make comparisons of equality and value
  34. Determine the Boolean value of a given comparison
  35. Write a conditional control flow using if, else if and else statements
  36. Implement logical operators &&, || and !
  37.  
  38.  
  39. JS 4
  40. Loops
  41.  
  42. Write proper JavaScript for loop syntax
  43. Iterate through an array using a for loop
  44. Write proper JavaScript while loop syntax
  45. Increment a counter variable properly inside a while loop
  46.  
  47.  
  48. JS 5
  49. Switch Statements and Functions
  50.  
  51. Know when to use a switch statement instead of an if/else statement
  52. Write a switch statement using proper syntax
  53.  
  54.  
  55. JS 6
  56. Object Literals
  57.  
  58. Understand property-value pairs
  59. Assign values to properties with both dot-notation and bracket-notation
  60. Change the value associated with a property
  61. Delete property-value pairs
  62.  
  63.  
  64. JS 7
  65. Regular Expressions
  66.  
  67. Read and write RegExps in Javascript
  68. Use RegExps to test and replace strings
  69. Understand basic regular expression special characters, .*+?\w\d
  70.  
  71. JS 8
  72. Object Oriented Programming
  73.  
  74. Create an object
  75. Understand some of the main concepts of object-oriented programming
  76. Start developing an understanding of objects and classes
  77.  
  78.  
  79.  
  80.  
  81. Intermediate Javascript
  82.  
  83. Callbacks
  84. Hofs (higher order functions): forEach, map, filter, reduce
Add Comment
Please, Sign In to add comment