How to check whether an Object is Present in the scene or not in THREE.js?
When adding your object to scene, add name to that object like
object.name = 'object_name';
Then you can check if your object exist in scene by
scene.getObjectByName('object_name');
If it return any object it means object exist in scene.