From 2c15e53f11c1ae5fe701ed52ecca5f5adf195a40 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Sat, 25 Aug 2018 18:36:52 -0400 Subject: [PATCH] static functions, object.assign --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 01d1bbb..6c71f0e 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ 1. Array.isArray() 1. argument object 1. spread and rest operators +1. Trailing commas 1. Template Literals 1. Object literal extensions 1. Destructuring @@ -479,6 +480,10 @@ function returnOnlyNums(...arrayParam){ console.log( returnOnlyNums(44, false, 'pizza', 45, {season: "winter"}, [1,2,3,4,5,], 2, 9) ); // [ 44, 45, 2, 9 ] ``` +## Trailing commas + + + ## Template Literals (String Interpolation) Template literals allow you to insert variables into strings with out having to use `+`