Yes, it can do that, but technically that will assign the default value if the retrieved value is falsey, as opposed to strictly undefined.
undefined is of course a falsey value, but the distinction is worth making, since otherwise code like this could cause undesirable behaviour if you want to default to a truthy value.
var x = x || true;
which will overwrite x if it is false or undefined.
If you want to set to default only if the variable is currently strictly undefined you have to write:
var x = (typeof x === 'undefined') ? def_val : x;
(where def_val is the desired default value)