Jump to content

Widget:FindData: Difference between revisions

From RiskiPedia
No edit summary
No edit summary
Tag: Reverted
Line 4: Line 4:
window.findData = function findData( age ){
window.findData = function findData( age ){
let range;
let range;
debugger;
for ( let row of window.dt2_all_cause_mortality ) {
for ( let row of window.dt2_all_cause_mortality ) {
range = row.age;
range = row.age;

Revision as of 19:51, 12 February 2025

<script>


window.findData = function findData( age ){ let range;

for ( let row of window.dt2_all_cause_mortality ) { range = row.age; range.split('-'); console.log(range); }; };


</script>