Rather than rewriting the variable's name, we can use the += operator to add a number with likes += 1.
+=
likes += 1
let likes = 5; likes += 1; console.log(likes);