const myTitle= 'title'; const myObject = {title: 'My Title', name: 'My Name'}; const {[myTitle]: myObjectTitle} = myObject; console.log(myObjectTitle); // "My Title"