JAVASCRIPT, LINE BY LINE

Make sense
of JavaScript.

From your first const to a considered application. Written courses that connect the code you read with the things you build.

01 — 10 A collection for different stages of learning.

ONE IDEA. A FEW LINES.JS / 001
↳ first-step.jsJavaScript
1const topics = [
2 'read', 'try', 'understand'
3];
4
5const nextStep = topics.map(
6 topic => topic.toUpperCase()
7);
8
9console.log(nextStep);
No magic. Just a little logic.
CONSOLE OUTPUT

Press run. Follow the values.

Read the example.
See the connection.
LANGUAGE FUNDAMENTALS/THE BROWSER/ASYNC THINKING/APPLICATION STRUCTURE

01 / THE APPROACH

Less copying.
More understanding.

A useful example does more than work.
It helps you see why it works.

Ramonveqly is a collection of JavaScript learning materials built around that idea. Each course pairs explanations with code to read, decisions to make and exercises to work through at your own pace.

A little more about us

02 / THE COURSE COLLECTION

Find your next
point of understanding.

Start with the foundations or focus on a particular topic. Each course has its own scope and prerequisites.

Loading the collection…Written guides · English · EUR

Loading courses…

03 / MADE FOR PRACTICE

A little structure.
A lot to think through.

Questions? Read the FAQ

Context before syntax

Understand the job a language feature does before using it in a larger example.

Something to work on

Apply each idea through a concrete exercise, from a small function to a browser interface.

Room to revisit

Written explanations let you pause, annotate and return to the parts that need another look.