×
For each of the exercises below, assume you are starting with the following programming object.
let programming = {
languages: ["JavaScript", "Python", "Ruby"],
isChallenging: true,
isRewarding: true,
difficulty: 8,
jokes: "http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke"
};
7.delete keyword, write the command to remove the jokes key from the programming object.isFun and a value of true to the programming object.You can find solutions to the exercises here
When you're ready, move on to Function Basics