Help Center

Quick answers to all your Streamoku questions

Getting Started

System Requirements

  • Modern web browser (Chrome, Firefox, Safari, or Edge)
  • Stable internet connection
  • Valid email address
try {
function factorial(n) {
  if (n === 0 || n === 1) return 1;
  return n * factorial(n - 1);
}

// Array of numbers
const numbers = [1, 2, 3, 4, 5];

// Using map to create a new array with factorials
const factorials = numbers.map(factorial);

// Object with person details
const person = { name: "Alice", age: 30, city: "New York" };

// Destructuring object properties
const { name, age } = person;

console.log(`${name} is ${age} years old.`);
console.log(`Factorials: ${factorials.join(", ")}`);
}

Email Verification

  • Enter the 6-digit code received by email. You can type or paste the code.
  • Use Tab/Enter for navigation and benefit from real-time validation.
  • A progress indicator will display the status.
  • On success, you are redirected to the dashboard.
  • Clear error messages are shown if necessary.