Here the function won’t ask for a title because it was already declared.

let options = {
title: "Menu"
};
let {width = prompt("width?"), title = prompt("title?")} = options;
alert(title);  // Menu
alert(width);  // (whatever the result of prompt is)