This explicitly uses the $regex operator. It searches for all names that start with "S". It is a more flexible approach because you can add additional regex options like case insensitivity ($options: 'i').
db.Employees.find({name: {$regex: /^S/}}); and db.Employees.find({name: {$regex: /^s/, $options: 'i'}});