Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 325 Bytes

style.md

File metadata and controls

23 lines (19 loc) · 325 Bytes

Code Styles

  • Indentation => 2 spaces
    function placeholder() {
      var variable1 = '';
    //
    }
  • Functions =>
    • Client-side is normal function

      var apple = function(size) {
      
      }
    • Server-side is arrow function

      var apple = (size) => {
      
      }