function truncateTitle(text, wordCount = 2) {
return text.split(" ").slice(0, wordCount).join(" ");
}
function truncateDescription(text, wordCount = 5) {
return text.split(" ").slice(0, wordCount).join(" ");
}
Approximate area where the item was last seen