"cousin2" should show up as 79,273,859 in the console, because that is what that value equals. But I do now know to how to change the the value after a click function. Other sources said that establishing var cousin2 as a global variable should do the trick, but it isn't.
var cousin2 = 0;
$(".checkBox").on("click", function(){
var cousin = $(this).parent().siblings()[1];
cousin2 = $( cousin ).find(".tabulator-cell").prevObject[0].innerText;
});
console.log(cousin2);