Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 207 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 207 Bytes

JavaScript

Repo of JavaScript Algorithm to improve my javascript skills.

Things To remember:

  • You can create a self executing function using:
(function () {
  alert("hello world")
 })()