verb

1 of 60
Bad / Steal

filch - To pilfer or steal (something, especially a thing of small value) in a casual way

In some states, filching something as small as a pack of gum can lead to being arrested.

// Auto-focus search input when modal opens var searchModal = document.getElementById('searchModal'); if (searchModal) { searchModal.addEventListener('shown.bs.modal', function () { var inp = searchModal.querySelector('input[name=search]'); if (inp) inp.focus(); }); }