function getLoadFeedArguments() { let arguments = [ pageOptions ]; let possibleArguments = ['adblock', 'adblock1', 'adblock2', 'tcblock', 'searchboxBlock', 'rtblock', 'rsblock', 'searchblock']; for (let i = 0; i < possibleArguments.length; i++) { if (typeof this[possibleArguments[i]] !== 'undefined') { arguments.push(this[possibleArguments[i]]); } } return arguments; }