is piped ls the same as ls -1?

ls returns output in several columns, whereas ls|cat returns byte-identical output with ls -1 for directories I’ve tried. Still I see ls -1 piped in answers, like ls -1|wc -l. Is there ever a reason to prefer ls -1? Why does ...|cat change the output of ls?