top of page

1

STRATEGIC INITIATIVE ONE

Improve experience at every point to increase opportunities for students to attain their educational goals.

In feedback collected during the Strategic Planning process, the ability to go back and fill in missing gaps was identified as the top learning opportunity by both students and teachers at A+ Students.

 

To address this, the A+ Student's learning platform was created and developed with the ability to go back to earlier grades and focus on the fundamentals. A lot of students face difficulties in Math in higher grades; however, the root of the issue is more than often presented in earlier grades.

 

A+ Students allows children to go back to any grade as far as KG to identify where the problem started. They can fix that problem and advance their way up to the current grades with full comprehension and understanding of the topic.

Teacher and Class
bottom of page
import { sendPageViewToFacebook } from 'backend/facebookApi'; // Import backend function // Function to retrieve the client's IP address async function getClientIP() { try { const response = await fetch('https://api.ipify.org?format=json'); const data = await response.json(); return data.ip; } catch (err) { console.error('Error fetching client IP:', err); return null; } } $w.onReady(async function () { // Get user's IP, user agent, and page URL const clientIp = await getClientIP(); const userAgent = navigator.userAgent; // Get the user agent const pageUrl = `https://www.aplustudents.ca${window.location.pathname}`; // Get the full page URL // Prepare data for page view const pageViewData = { clientIp: clientIp, userAgent: userAgent, pageUrl: pageUrl }; // Send page view data to Facebook sendPageViewToFacebook(pageViewData) .then(response => { console.log('PageView event sent successfully:', response); }) .catch(error => { console.error('Error sending PageView event:', error); }); });