I'm new in JavaScript I have this object that want to exclude 2 keys :
"age":20 and "university":"HCC". 
As a result, I want to see "name:"Sam" and "class":55 as the only properties in the object.
var b = { 
    "name":"Sam",
    "age":20,
    "university":"HCC",
    "class":55
}
 
    