- Open-source industry standart (RFC-7519).
- Usable for Authorization or secure exchange of information bretween parties.
- Verify that the sender is who it/he/she claims to be.
- Signed by the issuer, using a secret or keypair (HMAC algorithm, RSA or ECDSA).
A mutable object is an object whose state can be changed or modified over time. A immutable object is an object whose state cannot be modified after it is created.
In Javascript String and Numbers are immutable and Objects and arrays ars mutable.
let a = 7
a += 1
async function getSearchedData (search:string){
try {
const searchData = return await this.connection
.getRepository(UserEntity)
.createQueryBuilder("user")
.leftJoinAndSelect("user.roles", "roles")
.where(
"user.full_name LIKE :search OR user.username LIKE :search OR user.email LIKE :search",
NewerOlder