I have an array by the name students and a student object
let students = []
let student = {
name: '',
rollNumber: '',
age: '',
rank: ''
}
I have an array by the name students and a student object
let students = []
let student = {
name: '',
rollNumber: '',
age: '',
rank: ''
}
// Mixpanel Cheatsheet | |
// This requires the mixpanel javascript library to be embedded on your site | |
// https://mixpanel.com/help/reference/javascript-full-api-reference | |
// 1. API Methods. | |
mixpanel.init('new token', { your: 'config' }, 'library_name'); // initialize a new instance of the Mixpanel tracking object | |
mixpanel.push(['register', { a: 'b' }]); // push() keeps the standard async-array-push behavior around after the lib is loaded. This is only useful for external integrations that do not wish to rely on our convenience methods (created in the snippet). |