Good day,
I'm using jwt in my authentication. I already decoded my token but the problem is, I want to check if the token exp
is already expired or not.
var decodedToken = localStorage.getItem('user_token');
console.log(decodedToken.exp) // writes 1540360205
Thank you in advance.