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