00:08:17 Zac Gordon: const posts = [ { id: 1, slug: "hello", title: "Hello", }, { id: 2, slug: "world", title: "World", }, { id: 3, slug: "javascript", title: "JavaScript", }, ]; 00:08:41 Zac Gordon: const postIds = [1,2,3,4,5]; 00:09:11 Zac Gordon: Object.create() 00:09:15 Zac Gordon: Object.assign() 00:12:05 Zac Gordon: https://javascriptforwp.com/courses/%F0%9F%9A%80-js-for-wp-bootcamp-fall-2018/sections/week-5-advanced-topics-in-javascript/ 00:13:01 Zac Gordon: `this ${name} is it` 00:16:31 Zac Gordon: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals 00:16:42 Zac Gordon: ‘Template literals are string literals allowing embedded expressions. You can use multi-line strings and string interpolation features with them. They were called "template strings" in prior editions of the ES2015 specification. 00:18:53 Zac Gordon: https://facebook.github.io/immutable-js/ 00:23:37 Zac Gordon: https://javascriptforwp.com/courses/javascript/sections/advanced-javascript-topics/lesson/1-8-13-02-includes-326/ 00:29:55 Zac Gordon: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes/static 00:30:03 Zac Gordon: The static keyword defines a static method for a class. Static methods aren't called on instances of the class. Instead, they're called on the class itself. These are often utility functions, such as functions to create or clone objects. 00:40:41 Zac Gordon: https://caniuse.com/#feat=es5 00:40:59 Zac Gordon: https://caniuse.com/#search=es6 00:42:52 Zac Gordon: const posts = [ { id: 1, slug: "hello", title: "Hello", }, { id: 2, slug: "world", title: "World", }, { id: 3, slug: "javascript", title: "JavaScript", }, ]; 00:43:01 Zac Gordon: 1. Filter through the posts and get the post where slug is "world" 00:43:06 Zac Gordon: 2. Map through the posts and log out the titles to the screen 00:43:55 Zac Gordon: 3. const v let v var 00:44:29 Zac Gordon: 4. Explain fat arrow functions, their syntax and when to use them 00:46:25 Zac Gordon: http://constletvar.com/ 00:51:16 Zac Gordon: https://www.npmjs.com/package/@wordpress/api-fetch 00:52:02 Zac Gordon: window.wp.apiFetch 00:54:01 Zac Gordon: https://frontendmasters.com/courses/javascript-wordpress