Asigne este valor o si no está definido este otro valor JavaScript

var x; //variable to change
var y; //higher priority variable
var z = 12; //lower priority variable
x = !(y === undefined) ? y : z;
console.log(x); //12
1337