Skip to content

NodeJS Code Unboxing - Deep dive into `SHIT` to see what it is. :D

License

Notifications You must be signed in to change notification settings

ltv/nodejs-unboxing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nodejs-unboxing

NodeJS Code Unboxing - Deep dive into SHIT to see what it is. :D

Coding Style

function sum(x, y, z) {
  return x + y + z;
}

const numbers = [1, 2, 3];

console.log(sum(...numbers));
// expected output: 6

console.log(sum.apply(null, numbers));
// expected output: 6

About

NodeJS Code Unboxing - Deep dive into `SHIT` to see what it is. :D

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published