Created
April 24, 2014 16:32
-
-
Save joshjensen/11260838 to your computer and use it in GitHub Desktop.
Business Card
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
#!/bin/env node | |
var util = require("util"); | |
var jediMindTrick = function(details) { | |
util.print("This is the developer you are looking for: \n"); | |
for (var key in details) { | |
if (details.hasOwnProperty(key)) { | |
util.print(key + ": " + details[key] + "\n"); | |
} | |
} | |
}; | |
var detailsForJosh = { | |
name: "Josh Jensen", | |
mobile: "+1 (206) 651-5204", | |
email: "[email protected]", | |
url: "http://joshjensen.com", | |
twitter: "@joshj" | |
}; | |
jediMindTrick(detailsForJosh); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment