Clear Dropdown filters on repeater

Ive created a few dropdowns and have created 'All’s on the dropdowns to revert back to all table items should the user revert to showing all.

Ive created ‘All finance types’ and i dont know how to clear the selection to show everything again.
Can someone help with this code?

function filterResults(results){
const finance = $w( ‘#financetypedropdown’ ).value;
const term = $w( ‘#termofloandropdown’ ).value;
const status = $w( ‘#statusdropdown’ ).value;
if (finance && finance !== ‘Finance Type’ || ‘All Finance Types’ ) {
results = results.filter(item => item.typeOfFinance === finance);
}
if (finance && finance === ‘All Finance Types’ ) {
results = results.filter(item => item.typeOfFinance === ‘’ );
}
if (term && term !== ‘Term of Loan’ ) {
results = results.filter(item => item.termOfLoan === term);
}
if (status && status !== ‘Status’ ) {
results = results.filter(item => item.status === status);
}
return results;
}

export function financetypedropdown_change(event) {
//filtering the results
const filteredResults = filterResults(originalPropertiesInfo);
//setting the data
$w(#repeater).data = filteredResults;

//setting the repeater elements
$w(#repeater).onItemReady(($w, itemData) => {
console.log(itemData.title);
$w(#repeater).text = itemData.title;
});
}

export function termofloandropdown_change(event) {
//filtering the results
const filteredResults = filterResults(originalPropertiesInfo);
//setting the data
$w(#repeater).data = filteredResults;

//setting the repeater elements
$w(#repeater).onItemReady(($w, itemData) => {
console.log(itemData.title);
$w(#repeater).text = itemData.title;
});
}

export function statusdropdown_change(event) {
//filtering the results
const filteredResults = filterResults(originalPropertiesInfo);
//setting the data
$w(#repeater).data = filteredResults;

//setting the repeater elements
$w(#repeater).onItemReady(($w, itemData) => {
console.log(itemData.title);
$w(#repeater).text = itemData.title;
});
}