Open payne-chris-r opened 8 years ago
Who wrote the code, @payne-chris-r :question:
Also, this is the same as not having the if
at all :running_man: :hammer: :robot:
Looks like Matt.
Reorganize code files for code-along
GA-MEB authored on Mar 8
102 if (true || givenName) {
I think this should be rewritten as
if (givenName) {
create(givenName, surname, dob, gender, height, weight);
}
I'd need more context to know what makes sense.
Why have the
true
at all? This is the same as writingif(true)