Substitution is an art, my friends. It's not just about swapping one thing for another, it's about elevating the game.
But don't just take our word for it, check out these advanced substitution antics:
function substitution_antics(advanced) {
// Replace all instances of 'cat' with 'dog'
var text = 'I like to pet my cat.';
text = text.replace('cat', 'dog');
return text;
}