Bowling
Mark Your Calendars: Lakota West Boys/Girls Bowling Information Meeting!
There will be a Lakota West Bowling information meeting for students currently in grades 9-12 who are interested in Bowling. Athletes interested in Bowling this winter should attend this meeting and have a parent attend to get information about the upcoming season. The meeting will be on Thursday October 21st in the West cafeteria starting at 3:00 PM. Please contact Coach Peerless at marcy.peerless@lakotaonline.com for any additional information.
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 (_) {} })();