If I have the following object, how can I redefine the keys to remove the prefix "Class"?
{
ClassName: "John",
ClassEmail: "[email protected]",
ClassPhone: "1234567"
}
so it becomes
{
Name: "John",
Email: "[email protected]",
Phone: "1234567"
}
Is there any easy way?