I have two Object
one is role:
Role {
roleId: string;
name: string;
description: string;
isModerator: string;
}
role = {
roleId:"8e8be141-130d-4e5c-82d2-0a642d4b73e1",
name:"HR",
description:"HR of the Company",
isModerator:"N"
}
and 2nd is roleDetails:
RoleDetails {
name: string;
description: string;
isModerator: string;
}
I want to assign roleDetails = role;
so when I console.log(roleDetails)
I should get:
roleDetails = {
name:"HR"
description:"HR of the Company"
isModerator:"N"
}