<?php
$Maurizi = Array();
$Maurizi[0] = Array("Rob","dad");
$Maurizi[1] = Array("Katie","mom");
$Maurizi[2] = Array("Nicholas","son");
$Maurizi[3] = Array();
/* TODO: populate this when we know more,
probably some time in early November */
?>
or if you prefer Javascript…
<script type="text/javascript" charset="utf-8">
var Maurizi = new Array();
Maurizi[0] = new Array("Rob","dad");
Maurizi[1] = new Array("Katie","mom");
Maurizi[2] = new Array("Nicholas","son");
Maurizi[3] = new Array();
/* TODO: populate this when we know more,
probably some time in early November */
</script>
I’m shocked and horrified by your very un-oo code. See my corrections below:
function FamilyMember(data) { this.firstName; this.role; this.firstName=arguments[0]; this.role=arguments[1]; } var maurizi = new Array(); maurizi[0] = new FamilyMember("Rob","dad"); maurizi[1] = new FamilyMember("Katie","mom"); maurizi[2] = new FamilyMember("Nicholas","son"); maurizi[3] = new FamilyMember(); /* TODO: populate this when we know more, probably some time in early November */oh and by the way… MAZEL TOV!! :) :) :)
yeah, I don’t swing OO… That’s why I’m just an Interface Developer :-/
Best…Interface Developer…EVER. [sniff]
Now that’s is how you title a blog post! Way to set the bar – I’ll expect future announcements to be one line recursions. :) *snort* … Seriously, congrats!
So happy for you all!
Congrats.
*hbp
Pingback: Updates All Around @ RobMaurizi.com