Skip to content

Instantly share code, notes, and snippets.

{
data: [{
type: "gif",
id: "64zSh1uTE7xxm",
slug: "cat-funny-64zSh1uTE7xxm",
url: "http://giphy.com/gifs/cat-funny-64zSh1uTE7xxm",
bitly_gif_url: "http://gph.is/1sGq99P",
bitly_url: "http://gph.is/1sGq99P",
embed_url: "http://giphy.com/embed/64zSh1uTE7xxm",
username: "",
@NicerHugs
NicerHugs / whatIsThis.js
Last active October 18, 2016 19:32
some exercises to help us learn what this is!
// Problem 1
console.log(this);
// this is:
// because...
// // Problem 2
// var obj1 = {
// myName: 'obj1',
// this: this
// };