diff --git a/blog_posts/code-anatomy-chaining-reduce-for-loop.md b/blog_posts/code-anatomy-chaining-reduce-for-loop.md index 2d01b6de9..9f38b8620 100644 --- a/blog_posts/code-anatomy-chaining-reduce-for-loop.md +++ b/blog_posts/code-anatomy-chaining-reduce-for-loop.md @@ -2,7 +2,7 @@ title: Code Anatomy - For loops, array reduce and method chaining shortTitle: For loops, array reduce and method chaining type: story -tags: javascript,array,object,iterator +tags: javascript,array,iterator author: chalarangelo cover: case-study excerpt: There are many ways to iterate and transform array data in JavaScript. Learn how each one works and where you should use them. diff --git a/blog_posts/javascript-singleton-proxy.md b/blog_posts/javascript-singleton-proxy.md index 21e828942..287051f59 100644 --- a/blog_posts/javascript-singleton-proxy.md +++ b/blog_posts/javascript-singleton-proxy.md @@ -2,7 +2,7 @@ title: How can I implement a singleton in JavaScript? shortTitle: Singleton implementation type: question -tags: javascript,object,function,proxy,pattern +tags: javascript,object,proxy,pattern author: chalarangelo cover: obelisk excerpt: Learn how to implement the singleton design pattern in JavaScript, using the Proxy object. diff --git a/blog_posts/javascript-swap-two-variables.md b/blog_posts/javascript-swap-two-variables.md index 65a8b3e5f..b171ace69 100644 --- a/blog_posts/javascript-swap-two-variables.md +++ b/blog_posts/javascript-swap-two-variables.md @@ -2,7 +2,7 @@ title: "Tip: How to swap two variables in JavaScript" shortTitle: Swap two variables type: tip -tags: javascript,array,variables +tags: javascript,variables author: chalarangelo cover: mountain-lake-2 excerpt: Learn how to swap the values of two variables in JavaScript using a single line of ES6 code. diff --git a/blog_posts/js-data-structures-binary-search-tree.md b/blog_posts/js-data-structures-binary-search-tree.md index b08b0609d..2bb0c4a75 100644 --- a/blog_posts/js-data-structures-binary-search-tree.md +++ b/blog_posts/js-data-structures-binary-search-tree.md @@ -2,7 +2,7 @@ title: JavaScript Data Structures - Binary Search Tree shortTitle: Binary Search Tree type: story -tags: javascript,object,class,array +tags: javascript,class author: chalarangelo cover: purple-flower-macro-4 excerpt: A binary search tree is a data structure consisting of a set of ordered linked nodes representing a hierarchical tree structure, in which each node can have at most two children. diff --git a/blog_posts/js-data-structures-binary-tree.md b/blog_posts/js-data-structures-binary-tree.md index 8d2732bf4..80017c6c4 100644 --- a/blog_posts/js-data-structures-binary-tree.md +++ b/blog_posts/js-data-structures-binary-tree.md @@ -2,7 +2,7 @@ title: JavaScript Data Structures - Binary Tree shortTitle: Binary Tree type: story -tags: javascript,object,class,array +tags: javascript,class author: chalarangelo cover: purple-flower-macro-3 excerpt: A binary tree is a data structure consisting of a set of linked nodes representing a hierarchical tree structure, in which each node can have at most two children. diff --git a/blog_posts/js-data-structures-doubly-linked-list.md b/blog_posts/js-data-structures-doubly-linked-list.md index 23bb716cf..df464f3fd 100644 --- a/blog_posts/js-data-structures-doubly-linked-list.md +++ b/blog_posts/js-data-structures-doubly-linked-list.md @@ -2,7 +2,7 @@ title: JavaScript Data Structures - Doubly Linked List shortTitle: Doubly Linked List type: story -tags: javascript,object,class,array +tags: javascript,class author: chalarangelo cover: purple-flower-macro-4 excerpt: A doubly linked list is a linear data structure where each element points both to the next and the previous one. diff --git a/blog_posts/js-data-structures-graph.md b/blog_posts/js-data-structures-graph.md index 48044653f..8e2bb3a4a 100644 --- a/blog_posts/js-data-structures-graph.md +++ b/blog_posts/js-data-structures-graph.md @@ -2,7 +2,7 @@ title: JavaScript Data Structures - Graph shortTitle: Graph type: story -tags: javascript,object,class,array +tags: javascript,class author: chalarangelo cover: purple-flower-macro-1 excerpt: A graph is a data structure consisting of a set of vertices connected by a set of edges. diff --git a/blog_posts/js-data-structures-linked-list.md b/blog_posts/js-data-structures-linked-list.md index ab0c48bee..f7171b4de 100644 --- a/blog_posts/js-data-structures-linked-list.md +++ b/blog_posts/js-data-structures-linked-list.md @@ -2,7 +2,7 @@ title: JavaScript Data Structures - Linked List shortTitle: Linked List type: story -tags: javascript,object,class,array +tags: javascript,class author: chalarangelo cover: purple-flower-macro-3 excerpt: A linked list is a linear data structure where each element points to the next. diff --git a/blog_posts/js-data-structures-queue.md b/blog_posts/js-data-structures-queue.md index d9433cc7c..75c511efd 100644 --- a/blog_posts/js-data-structures-queue.md +++ b/blog_posts/js-data-structures-queue.md @@ -2,7 +2,7 @@ title: JavaScript Data Structures - Queue shortTitle: Queue type: story -tags: javascript,object,class,array +tags: javascript,class author: chalarangelo cover: purple-flower-macro-2 excerpt: A queue is a linear data structure which follows a first in, first out (FIFO) order of operations. diff --git a/blog_posts/js-data-structures-stack.md b/blog_posts/js-data-structures-stack.md index 4a6ebcfe8..94efaa6b9 100644 --- a/blog_posts/js-data-structures-stack.md +++ b/blog_posts/js-data-structures-stack.md @@ -2,7 +2,7 @@ title: JavaScript Data Structures - Stack shortTitle: Stack type: story -tags: javascript,object,class,array +tags: javascript,class author: chalarangelo cover: purple-flower-macro-1 excerpt: A stack is a linear data structure which follows a last in, first out (LIFO) order of operations. diff --git a/blog_posts/js-data-structures-tree.md b/blog_posts/js-data-structures-tree.md index 73a0976d9..328717c58 100644 --- a/blog_posts/js-data-structures-tree.md +++ b/blog_posts/js-data-structures-tree.md @@ -2,7 +2,7 @@ title: JavaScript Data Structures - Tree shortTitle: Tree type: story -tags: javascript,object,class,array +tags: javascript,class author: chalarangelo cover: purple-flower-macro-2 excerpt: A tree is a data structure consisting of a set of linked nodes representing a hierarchical tree structure. diff --git a/blog_posts/js-double-negation-operator.md b/blog_posts/js-double-negation-operator.md index ecc1f5bbf..688f4008a 100644 --- a/blog_posts/js-double-negation-operator.md +++ b/blog_posts/js-double-negation-operator.md @@ -2,7 +2,7 @@ title: What does the double negation operator do in JavaScript? shortTitle: Double negation operator type: question -tags: javascript,function +tags: javascript,type author: chalarangelo cover: memories-of-pineapple-2 excerpt: You've probably come across the double negation operator (`!!`) before, but do you know what it does? diff --git a/blog_posts/js-frequency-map-data-structure.md b/blog_posts/js-frequency-map-data-structure.md index 48bd1e85f..c4060b2fe 100644 --- a/blog_posts/js-frequency-map-data-structure.md +++ b/blog_posts/js-frequency-map-data-structure.md @@ -2,7 +2,7 @@ title: Frequency Map Data Structure shortTitle: Frequency Map type: story -tags: javascript,object,class,array +tags: javascript,class author: chalarangelo cover: radio-monstera excerpt: A custom data structure to keep track of value frequencies in an array. diff --git a/blog_posts/js-native-data-structures.md b/blog_posts/js-native-data-structures.md index 99501ac6f..6fa5238ea 100644 --- a/blog_posts/js-native-data-structures.md +++ b/blog_posts/js-native-data-structures.md @@ -2,7 +2,7 @@ title: Native JavaScript Data Structures shortTitle: Native Data Structures type: story -tags: javascript,object,array +tags: javascript,array author: chalarangelo cover: purple-flower-macro-2 excerpt: JavaScript provides a handful of native data structures that you can start using in your code right now.