Widget:FindData: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
Line 5: | Line 5: | ||
let range; | let range; | ||
debugger; | debugger; | ||
window.dt2_all_cause_mortality.forEach( row => { | |||
range = row.age; | range = row.age; | ||
range.split('-'); | range.split('-'); | ||
console.log(range); | console.log(range); | ||
} | }); | ||
}; | |||
</script> | </script> |
Revision as of 19:47, 12 February 2025
<script>
window.findData = function findData( age ){
let range;
debugger;
window.dt2_all_cause_mortality.forEach( row => {
range = row.age;
range.split('-');
console.log(range);
});
};
</script>