Bootcamps

Explore our extensive collection of courses designed to help you master various subjects and skills. Whether you're a beginner or an advanced learner, there's something here for everyone.

Academy

Learn live

Join us for our free workshops, webinars, and other events to learn more about our programs and get started on your journey to becoming a developer.

Upcoming live events

Learning library

For all the self-taught geeks out there, here is our content library with most of the learning materials we have produced throughout the years.

It makes sense to start learning by reading and watching videos about fundamentals and how things work.

Full-Stack Software Developer - 16w

Data Science and Machine Learning - 16 wks

Search from all Lessons


LoginGet Started

Register to 4Geeks

← Back to Projects

Domain Name Generator

Difficulty

  • easy

Average duration

4 hrs

Technologies

Difficulty

  • easy

Average duration

4 hrs

Technologies

Weekly Coding Challenge

Every week, we pick a real-life project to build your portfolio and get ready for a job. All projects are built with ChatGPT as co-pilot!

Start the Challenge

Podcast: Code Sets You Free

A tech-culture podcast where you learn to fight the enemies that blocks your way to become a successful professional in tech.

Listen the podcast

Finding a domain name is hard, so why not automate it? :)

🌱 How to start this project

Do not clone this repository because we are going to be using a different template.

We recommend opening the vanillajs boilerplate using a provisioning tool like Codespaces (recommended) or Gitpod. Alternatively, you can clone it on your local computer using the git clone command.

This is the repository you need to open or clone:

1https://github.com/4GeeksAcademy/vanillajs-hello

πŸ‘‰ Please follow these steps on how to start a coding project.

πŸ’‘ Important: Remember to save and upload your code to GitHub by creating a new repository, updating the remote (git remote set-url origin <your new url>), and uploading the code to your new repository using the add, commit and push commands from the git terminal.

Then follow these steps:

  1. Create one app.js JavaScript file.
  2. Add your code inside your app.js file.
  3. You have to use console.log("Any string"); to show something on the console.
  4. Run your code by typing: $ node app.js, if you run it locally, make sure you have node.js

πŸ“ Instructions

  1. Create a script that generates all the possible domain name combinations from a list of pronouns, adjectives and nouns, for example:
1 let pronoun = ['the', 'our']; 2 let adj = ['great', 'big']; 3 let noun = ['jogger', 'racoon'];

Should generate something like:

1thegreatjogger.com 2thegreatracoon.com 3ourgreatjogger.com 4ourgreatracoon.com 5thebigjogger.com 6thebigracoon.com 7ourbigjogger.com 8ourbigracoon.com

πŸ’‘ Hints

  • You'll need to use nested for loops in order to mix the different values together.

  • Your tools: For loop, string concatenation.

😎 Feeling confident?

  • Add several types of extensions: .com, .net, .us, .io, etc.

  • Add domain hacks, for example: instead of lastOfUs.com you can use the .us domain like this: lastOf.us

A bit of history about the project

Before the domain market was centralized and converted into a mafia controlled by Godaddy, Enom, and others, normal people like you and me were able to buy a .com domain relatively easily.

In fact, this project was originally built in 2002 by one of the 4Geeks teachers while he was trying to find domain names to buy for several projects.

This and many other projects are built by students as part of the 4Geeks Academy Coding Bootcamp by Alejandro Sanchez and many other contributors. Find out more about our Full Stack Developer Course, and Data Science Bootcamp.

Sign up and get access to solution files and videos

We will use it to give you access to your account.
Already have an account? Login here.

Difficulty

  • easy

Average duration

4 hrs

Technologies

Difficulty

  • easy

Average duration

4 hrs

Technologies

Difficulty

  • easy

Average duration

4 hrs

Technologies

Difficulty

  • easy

Average duration

4 hrs

Technologies

Sign up and get access to solution files and videos

We will use it to give you access to your account.
Already have an account? Login here.

Difficulty

  • easy

Average duration

4 hrs

Technologies

Difficulty

  • easy

Average duration

4 hrs

Technologies

Supplementary Material

In order to prepare better for completing this exercises, we suggest the following materials

Exercise

Learn Javascript Arrays and Loops Interactive

Exercise

Javascript Beginner Tutorial (interactive)

Lesson

What is an Array? Understanding the Basics and Defining Array Data Structure

Weekly Coding Challenge

Every week, we pick a real-life project to build your portfolio and get ready for a job. All projects are built with ChatGPT as co-pilot!

Start the Challenge

Podcast: Code Sets You Free

A tech-culture podcast where you learn to fight the enemies that blocks your way to become a successful professional in tech.

Listen the podcast