eventdataTransferdropEffect
Event.dataTransfer.dropEffect is a property in the HTML5 Drag and Drop API that signals the operation intended to be performed on the dragged data if a drop occurs. The dropEffect value is read and/or set during drag events, most commonly in dragover or dragenter, and is considered when determining the final drop action during the drop event. The value is a string that represents the requested operation.
Possible values for dropEffect are "none", "copy", "move", and "link". "none" indicates that no drop is allowed.
Usage typically involves handling a dragover event, calling preventDefault to indicate a drop is possible, and
Compatibility is broad across modern browsers, though subtle differences exist in how visual cues and restrictions