It's not just FB, my Samsung S9 came preloaded with 'undeletable' Microsoft apps too. But this is nothing new, Samsung phones have came preloaded with bloat since forever. When buying a new phone I always spend some time deleting all Samsung, Microsoft, Facebook and carrier related apps. Yes, you can delete 'undeletable' apps through ADB, without rooting the device. pm uninstall -k --user 0
TIL: adb shell has all sorts of goodies, so I went for the one-liner:
pm list packages com.facebook | sed 's/package://' | xargs -n 1 -- pm uninstall -k --user 0
(There's a spurious warning at the end, seems their `xargs -n` likes adding a newline: `ls | xargs -n 1`)