Hoisting in JavaScript

This post was first published on my blog. You can read it at this link for a focused and better reading experience.This article is also available in Persian here. About this post In this po...
0 Read More

Exploring Numbers in Programming

Hi! I’m Sarah.I am a self-taught programmer with a passion for where math meets programming.This blog post represents a talk I gave at the inaugural Tech Talk Augusta.As an introduction to my talks,...
0 Read More

find_by() & find()

find_by() returns a single instance, not an array.Movie.find_by(id:3).title will return the title of the movie with id 3. if the id doesnt exist, it returns "nil".find() also returns a single instance...
0 Read More