http://gothoxeo4g2yqa3ba27z3sigeprlwan3deogkejooe7zqccou6qgkvad.onion/ryanmcdermott/clean-code-javascript/blob/master/README.md
config . cancellable : true ; 530 } 531 532 createMenu ( menuConfig ); 533 ``` 534 535 **Good:** 536 537 ```javascript 538 const menuConfig = { 539 title : "Order" , 540 // User did not include 'body' key 541 buttonText : "Send" , 542 cancellable : true 543 }; 544 545 function createMenu ( config ) { 546 let finalConfig = Object . assign ( 547 { 548 title : "Foo" , 549 body : "Bar" , 550 buttonText : "Baz" , 551 cancellable : true 552 }, 553 config 554 ); 555 return finalConfig 556 //...