This file contains 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
/* http://idiallo.com/javascript/ajax-without-jquery */ | |
var url = "http://jsonplaceholder.typicode.com/posts"; | |
var Ajax = { | |
xhr : null, | |
request : function (url, method, data, success, failure) { | |
if (!this.xhr) { | |
this.xhr = new XMLHttpRequest(); | |
} |
This file contains 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
// Object Oriented Life Motto | |
var me = world.getPerson("Christian Mendoza"); | |
if(me !== null) { | |
while(me.isAlive()) { | |
if(me.isSad()) { | |
me.setSad(FALSE); | |
me.executeAwesomeness(); | |
console.log("huzzah"); | |
} | |
else { |