Obtener valor antes del cambio y después del cambio JS

var oldValue = this.defaultValue;
var newValue = this.value;
console.log("Old Value " + oldValue);
console.log("New value " + newValue);
Snippets