I am creating a variable rejecting another one, in "First.js" file:
var nosubs = _.reject(subs, function (bi) { return bi.ParentBoardbookItemId === '0'; });
Is it possible to call this variable (nosubs) to "Second.js" file? How can I do that?
Notice that i a
Thank you in advance!