Skip to content

Instantly share code, notes, and snippets.

@yogieputra8
Created September 22, 2017 10:14
Show Gist options
  • Save yogieputra8/b8980e91d1b117ce52b02d3636ba15f5 to your computer and use it in GitHub Desktop.
Save yogieputra8/b8980e91d1b117ce52b02d3636ba15f5 to your computer and use it in GitHub Desktop.
LocalStorage
componentDidMount(){
this.getToken() // Panggil function getToken
}
// Bikin function getToken
function getToken(){
const token = localStorage.getItem('item')
console.log(token)
}
@yogieputra8
Copy link
Author

Jangan bikin function didalam Lifecycle (DidMount, WillMount, dll) React, kepanjangan jadinya

@yogieputra8
Copy link
Author

componentDidMount(){
this.getToken() // Panggil function getToken
}

// Bikin function getToken
getToken = () => {
const token = localStorage.getItem('item')
console.log(token)
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment