Coding · ·

Team builder

You'll be creating a progam which helps you build a team of a variable size.

Here is a sample interactive session with a working program:

❯ bun team.js 
Usage: bun team.js [num_people_in_team]

❯ bun team.js andy
Usage: bun team.js [num_people_in_team]

❯ bun team.js 3.4
Usage: bun team.js [num_people_in_team]

❯ bun team.js 8
Usage: bun team.js [num_people_in_team]

❯ bun team.js 3
You are building a team of 3 people
Team members 1 of 3: Benji
Team members 2 of 3: Zia
Team members 3 of 3: Alice
Your team members are: Benji, Zia, Alice
Your 3 team members have 13 characters in their names (average 4.3)

Tips