Open in app
Home
Notifications
Lists
Stories

Write
Marshall Slemp
Marshall Slemp

Home

Dec 1, 2020

JavaScript Callbacks

Let’s talk about callbacks! What are they and how do we use them… What are Callbacks? A Callback is just a function that gets passed to another function as an argument. The function that takes the callback as an argument can call the callback function when it needs to! Now, this is confusing…

Callbacks

3 min read


Nov 9, 2020

Introduction to the Canvas!

We are going to introduce the Canvas API for HTML5 and build a quick project that allows a square to bounce off the walls of the canvas. …

Canvas Api

4 min read

Introduction to the Canvas!
Introduction to the Canvas!

Oct 7, 2020

Array and Object references in JavaScript!

Have you ever tried to compare to arrays in JavaScript only to see it return false? Even though they look the “same”! Um…What? Theres actually a pretty “simple” explanation of why these comparisons are false! It turns out the variables, like array1, holds a reference/pointer (memory address) for that array. So…

Arrays

2 min read

Array and Object references in JavaScript!
Array and Object references in JavaScript!

Oct 5, 2020

JavaScript Array Methods

JavaScript gives us some built in methods to use on our arrays. We will cover the most used ones and give an example forEach(hint hint)… The methods all take a callback function as an argument and the method will call that function for every element in the array. …

3 min read

JavaScript Array Methods
JavaScript Array Methods

Jul 30, 2020

Big O— For Beginners

If you get into Web development, Software Development or anything to do with writing code, you well eventually come across something called Big O Notation. …

Big O Notation

3 min read

Big O— For Beginners
Big O— For Beginners

Jul 28, 2020

Sending Images in React using Fetch and storing them in your Ruby on Rails API backend!

In this article we are going to cover sending an Image using Fetch, storing that image in Rails Active Storage and retrieving that image when a user visits your site. So you have your Rails API running and your React front end running. I will assume you can make new…

Ruby On Rails

3 min read

Sending Images in React using Fetch and storing them in your Ruby on Rails API backend!
Sending Images in React using Fetch and storing them in your Ruby on Rails API backend!

Jul 28, 2020

Routes in Ruby on Rails

When you run “rails new new_project”, rails installs a lot of stuff. You don’t need to worry about most of these folders yet but in your config folder you have a routes.rb file! …

Rails

3 min read

Routes in Ruby on Rails
Routes in Ruby on Rails

Jul 28, 2020

Using Fetch…

If you are learning JavaScript, then it won’t be long before you are introduced to the Fetch API. In this article we will discuss what Fetch is, how to use it and how to update the DOM when we get a response! …

Fetch Api

3 min read

Using Fetch…
Using Fetch…
Marshall Slemp

Marshall Slemp

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Knowable