This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var hipsterCat = [ | |
{ title: "First Project", img: "img/hipster-cat-3.jpg" }, | |
{ title: "Second Project", img: "img/hipster-cat-3.jpg" }, | |
{ title: "Third Project", img: "img/hipster-cat-3.jpg" }, | |
{ title: "Fourth Project", img: "img/hipster-cat-3.jpg" } | |
]; | |
$(document).ready(function(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Pet | |
attr_reader :color, :breed | |
attr_accessor :name | |
def initialize(color, breed) | |
@color = color | |
@breed = breed | |
@hungry = true | |
end | |
def feed(food) |