Slide 32
Slide 32 text
No side effects:
const thesis = {name: "Church's", date: 1936};
function renameThesis(oldThesis, newName) {
return {name: newName, date: oldThesis.date}
}
const thesis2 = renameThesis(ct,"Church-Turing");
thesis2; // {name: "Church's", date: 1936}
thesis; // {name: "Church-Turing", date: 1936}