0Pricing
Javascript for Kids · Lesson

Your Own Story

Make a new one.

Your Own Story is a free Javascript for Kids lesson on CoddyKit — lesson 4 of 4. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Javascript for Kids learning path, one of 4 lessons in the course, and your progress syncs across the web and the CoddyKit app.

Make Your OWN Story! ✏️

Hi creative coder! 🌟 You learned to collect, fill, and show stories. 📖

Now YOU are the author! ✏️ Let's design your very own silly story template! 🎨

Pick Your Word Boxes 📦

First, decide what kinds of words your story needs! 📦

Maybe an animal, a place, and a sound. Totally up to you! 😄

let animal = 'octopus';
let place = 'space station';
let sound = 'BLOOP';
console.log('My word boxes are ready! 🎉');

Write Your Template 📜

Now write a sentence with your words inside! 📜

This is YOUR story shape. Make it as silly as you like! 🤪

let animal = 'octopus';
let place = 'space station';
console.log('A giant ' + animal + ' floated around the ' + place + '!');

Add a Hero 🦸

Every story is better with a hero! 🦸

Add a name box and put your hero in the spotlight! 🌟

let hero = 'Captain Pixel';
let animal = 'octopus';
console.log(hero + ' waved hello to the ' + animal + '! 👋');

Mix in an Adjective 🌈

Describing words make your story sparkle! 🌈

Add an adjective box and watch the magic! ✨

let adjective = 'bouncy';
let animal = 'octopus';
console.log('The ' + adjective + ' ' + animal + ' giggled! 😄');

Your Multi-Line Story 📰

Make your story longer with more lines! 📰

Each line adds more fun to your tale. 🎊

let hero = 'Captain Pixel';
let animal = 'octopus';
let place = 'space station';
console.log(hero + ' arrived at the ' + place + '.');
console.log('A friendly ' + animal + ' said hi! 🐙');

Build a Story Machine 🤖

Turn your story into a reusable machine (function)! 🤖

Give it words, and it builds your tale every time! 🔁

function myStory(hero, animal) {
  console.log('🚀 ' + hero + ' met a ' + animal + ' in space!');
}
myStory('Captain Pixel', 'octopus');

Try Different Words 🔄

The best part: change the words and get a brand new story! 🔄

Same machine, totally different tale! 🤩

function myStory(hero, animal) {
  console.log('🚀 ' + hero + ' met a ' + animal + ' in space!');
}
myStory('Zoey', 'robot dog');
myStory('Max', 'space whale');

Add a Title and Emojis 🎬

Make your story look amazing with a title and emojis! 🎬

You are a real Story Maker now! 🌟

let hero = 'Luna';
let animal = 'dragon';
console.log('🎬 The Great ' + hero + ' Adventure 🎬');
console.log('🐉 ' + hero + ' tamed a wild ' + animal + '! 🎉');

Your Complete Story Maker 🎊

Here is a full story maker built by YOU! 🎊

Change any word to make endless silly stories! ♾️

function makeStory(name, animal, place, sound) {
  console.log('🌟 ' + name + ' explored the ' + place + '.');
  console.log('A ' + animal + ' shouted ' + sound + '! 😄');
}
makeStory('Mia', 'parrot', 'jungle', 'SQUAWK');

You Made Your Own Story! 🏆

Incredible, author! 🏆 You learned to:

  • 📦 Pick your own word boxes
  • 📜 Write your own template
  • 🤖 Build a reusable story machine

You finished the Story Maker course! 🎉 What story will you write next? ✏️

Quick Check ✅

Brain time! 🧠 Why is it handy to put your story inside a function?

Lesson Recap 🎀

Super job, story author! 🎀 Today you learned:

  • 📦 Choose your own word boxes
  • 📜 Design your own template
  • 🤖 Reuse it with a function

You are officially a Story Maker! 🌟

Frequently asked questions

Is the “Your Own Story” lesson free?

Yes — the full text of “Your Own Story” is free to read here on the web, and the Javascript for Kids course includes 4 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Javascript for Kids course, upgrade to CoddyKit PRO.

What will I learn in “Your Own Story”?

Make a new one. You practise Javascript for Kids with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.

Do I need any experience to start Javascript for Kids?

No prior experience is required. Javascript for Kids on CoddyKit is structured for beginners through advanced learners; this is — lesson 4 of 4, so you can start here or from the beginning and move at your own pace.

How long does the “Your Own Story” lesson take?

Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.

Can I write and run code in this Javascript for Kids lesson?

Yes. Every Javascript for Kids lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.

All lessons in this course

  1. Collecting Words
  2. Filling the Story
  3. Showing the Story
  4. Your Own Story
← Back to Javascript for Kids