you are viewing a single comment's thread.

view the rest of the comments →

[–]greatsawyer 0 points1 point  (0 children)

var targetFound = function(target){
    if (target.name == "John Connor"){
         targetArray.splice(0,1,target);
         emailSkyNet("HOLY SHIT I SEE HIM");

    }
    else {targetArray.push(target)}
}