Megan Paffrath

Megan Paffrath @meganpaffrath

About: I like learning new things and building fun stuffs.

Location:
Paso Robles, CA
Joined:
Nov 20, 2020

Megan Paffrath
articles - 9 total

JavaScript: Default Parameters, Spread Operator, Rest Parameters, and Destructuring!

Default Params We can add a default value directly in our parameter list function...

Learn More 1 0Aug 8 '24

JavaScript: forEach, map, Arrow Functions, setTimeout, setInterval, filter, some, every, and reduce

forEach Method forEach is used to iterate over arrays. Here is a simple example: const...

Learn More 1 0Aug 7 '24

JavaScript: Functions, Function Expressions, Objects, Methods, and this

Simple Basic Function Here is a simple function that takes no arguments: function...

Learn More 1 0Aug 7 '24

Loops: For Loops, While Loops, For...Of Loops, For...In Loops

The point of looping is to repeat some functionality. Some types of loops include: for loop while...

Learn More 0 0Aug 6 '24

Object Literals

Objects are collections of key-value pairs (properties). To create an object we can do as...

Learn More 0 0Aug 6 '24

Array Methods: concat(), includes(), indexOf(), reverse(), slice(), splice()

Array Methods Let's learn a few array methods! If you want to play around to learn, please...

Learn More 1 0Aug 5 '24

JavaScript: Arrays, Array Properties, Array Methods: push, pop, shift, unshift, Stacks, and Queues!

Arrays Arrays are ordered collections of values/variables that are stored sequentially....

Learn More 3 0Aug 4 '24

JavaScript: String Template Literals

String template literals give us a cleaner way to concatenate our strings and variables. Let's say...

Learn More 1 0Aug 3 '24

JavaScript: Strings, String Methods, and String Properties

Strings Strings are primitive values in JS that contain letters and characters. Some...

Learn More 0 0Aug 3 '24