Using adb, I would assume. But do you mean apps that came with the phone or new apps that you installed? If you installed the apps you just have to do the following commands:
1) adb shell pm list packages
find the app you want to uninstall on the list
2) pm uninstall --user 0 com.example.app
note: change com.example.app to the app package you found
3)You have successfully removed an app!