computed-props.js (103B)
1 (function(key) { 2 let obj = { 3 b: 5 4 }; 5 obj[key] = 0; 6 const c = obj.b; 7 return obj; 8 })("a");