Giter VIP home page Giter VIP logo

javascript-tips's Introduction

Javascript Tips

set()

Remove duplicates

const dups = [ 'cat', 'dog', 'pig', 'cat']
const removed = [ ...new Set(dups)]

Loops

  • map - for creating new array
  • for each - no new array needed
  • for (const element of array) - fastest

Call function with default values

const calculateTotal = ( item, { shipping = 10, discount = 0 } = {}) => {}
calculateTotal( item, { shipping: 0 })

JS Reference VS Value

  • in JS anything that isn't a primitive value like string, number or boolean, such as array and object is passed by reference NOT value

    let c = [1,2] // c === d & c == d both true since d is refernecing c in memory. let d = c

    let c = [1,2] // c === d & c == d are both false since an array/object is checking the memory address and they're both set to different memory addresses. let d = [1,2]

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.