What is the process for obtaining the hash value of an object in typescript?
For instance:
let user:any = {name:'tempuser', age:'29'};
let anotheruser:any = {name:'iam', age:'29'};
if( Object.GetHashCode(user) === Object.GetHashCode(anotheruser)){
alert('equal');
}
Furthermore, it allows us to determine if the object has been modified or not.