次の銃の順不同リストが与えられた場合、マシンのリストからマシンを削除するにはどうすればよいですか?
let gun = new Gun();
let machineId = 'cool-machine';
let location = {
lat: position.coords.latitude,
lng: position.coords.longitude
};
let machines = gun.get('machines');
let machine = gun.get('machine/' + machineId);
machine.put({machineId, location});