How to access number of watchers and views in Java Script?

Here you go:

GarageSale 9.6 Beta 2 Released

Here is a example script:

function run(){
	for (const listing of selectedListings) {
		consoleLog("watchers:" + listing.watchers);
		consoleLog("views:" + listing.views);
	}
}
1 Like