Dux-Courses Evaluations
COURSESDOCUMENTATION
RoadmapRanking
Tutorial Daily ChallengePLAYGROUNDARENA
LoginSign Up
Aurum-Courses

Aurum Courses is an advanced learning and evaluation platform designed to accelerate your tech career. We provide an immersive environment filled with challenges, technical documentation, and verifyable certificates for frontend, backend, and fullstack technologies.

Platform Links

  • Interactive Courses
  • Technical Documentation
  • My Profile & Progress
Aurum-Courses
  • Privacy Policy
  • Terms of Service
  • Cookies Management

Our Network

  • Aurumdux
  • MiniDuxTools
© 2026 Aurum-Courses. All rights reserved. Made with passion for the developer ecosystem.

Developed by Aurumdux

Code Lab

Playground

Write, execute, and experiment with code in real-time directly in your browser.

Interactive TDD Playground
// Escribe tu código JavaScript aquí
// Prueba editar y ver el resultado en tiempo real

function saludar(nombre) {
  return `Hola, ${nombre}. Bienvenido a Aurum Courses`
}

document.getElementById('app').innerHTML = `
  <div style="font-family: Inter, sans-serif; padding: 2rem; text-align: center;">
    <h1 style="color: #C5A03F; font-size: 1.5rem;">${saludar('Developer')}</h1>
    <p style="color: #666; margin-top: 1rem;">Edita el código de la izquierda y mira los cambios aquí</p>
    <div style="margin-top: 2rem; padding: 1rem; border-radius: 12px; background: #f0f0f0;">
      <code>2 + 2 = ${2 + 2}</code>
    </div>
  </div>
`

Requisitos TDD

✅

Crear una función llamada `saludar`

✅

Usar la palabra clave `return`

✅

Acceder al DOM usando `getElementById`

¡Tests Superados! 🎉
Open on CodeSandboxOpen Sandbox

Quick tips

  • • Code runs automatically when you stop typing.
  • • Use the expand button (↗) to enter fullscreen mode.
  • • Open the console to see `console.log()` and debug your code.
  • • Experiment freely: changes are not saved.