From 07a29d80cfb245b16e856dd3d91df4b2d1608dcd Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Tue, 15 Jan 2019 14:05:11 -0600 Subject: [PATCH] Fix the commented output --- javascript/matching-a-computed-property-in-function-args.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/javascript/matching-a-computed-property-in-function-args.md b/javascript/matching-a-computed-property-in-function-args.md index d984ef8..85ab1b0 100644 --- a/javascript/matching-a-computed-property-in-function-args.md +++ b/javascript/matching-a-computed-property-in-function-args.md @@ -20,8 +20,8 @@ This `get` function can then be used like so. ```javascript const stuff = { a: 1, b: 2, c: 3 }; -console.log("Get a:", get("a", stuff)); // 1 -console.log("Get d:", get("d", stuff)); // undefined +console.log("Get a:", get("a", stuff)); // Get a: 1 +console.log("Get d:", get("d", stuff)); // Get d: undefined ``` h/t