Drag and Drop List

Create a sortable drag and drop list

JavaScriptIntermediate
JavaScript
class DragDropList {
    constructor(items) { this.items = items; }
    dragStart(index) { this.draggedIndex = index; }
    dragOver(index) { /* Handle drag over */ }
    drop(index) { /* Reorder items */ }
}

Output

// Drag and drop functionality

Drag and Drop List enables item reordering.