Exercises Flashcards
1
Q
code multiple ways to put “John” and “Doe” together to get “John Doe”.
A
"John" + " " + "Doe" "John" + " Doe" "John "<< "Doe" "John ".concat "Doe" "Doe".prepend "John "
code multiple ways to put “John” and “Doe” together to get “John Doe”.
"John" + " " + "Doe" "John" + " Doe" "John "<< "Doe" "John ".concat "Doe" "Doe".prepend "John "