CJCoding With Joseph
15per day
TitleTopicsAction
1
Console OutputUse console.log() to display the following message: Hello, World! Steps: 1. Us...
easy○ Not Started
Printing
Solve
2
Variable AdditionCreate two variables (num1 = 5 and num2 = 10), calculate their sum, and use cons...
easy○ Not Started
Printing
Solve
3
Array LengthCreate an array with these fruits: 'apple', 'banana', 'orange', 'grape', and use...
easy○ Not Started
Printing
Solve
37
Template Literal GreetingCreate two variables: name = 'Joseph' and track = 'JavaScript'. Use a template l...
easy○ Not Started
Printing
Solve
38
Average Score OutputCreate three variables: score1 = 78, score2 = 85, and score3 = 92. Compute the a...
easy○ Not Started
Printing
Solve
39
Print a NumberUse console.log to print the number 42 to the console. Expected output: 42...
easy○ Not Started
Printing
Solve
40
Print a Division ResultUse console.log to print the result of 10 divided by 4. In JavaScript this divis...
easy○ Not Started
Printing
Solve
41
Print a Comparison ResultUse console.log to print whether 10 is greater than 7. A comparison produces a b...
easy○ Not Started
Printing
Solve
42
Concatenate Two WordsTwo string variables are commonly joined with the + operator. Print the result o...
easy○ Not Started
Printing
Solve
43
Print Three LinesUse three separate console.log calls to print these three lines in order: Red G...
easy○ Not Started
Printing
Solve
44
Print a String's LengthStrings have a length property. Print the length of the string "JavaScript". Ex...
easy○ Not Started
Printing
Solve
45
Print in UppercasePrint the string "hello" converted to all uppercase letters. Expected output: H...
easy○ Not Started
Printing
Solve
46
Print in LowercasePrint the string "SHOUTING" converted to all lowercase letters. Expected output...
easy○ Not Started
Printing
Solve
47
Print a Repeated CharacterThe string method .repeat(n) returns a string repeated n times. Print a line mad...
easy○ Not Started
Printing
Solve
48
Print a Labeled NumberPrint a score with a label by joining text and a number. Print exactly: Score: ...
easy○ Not Started
Printing
Solve
49
Add Two Variables and PrintTwo number variables are given. Print their sum. For a = 7 and b = 8 the progra...
easy○ Not Started
Printing
Solve
50
Print Numbers One to FiveUse a loop to print the numbers 1 through 5, each on its own line. Expected out...
medium○ Not Started
Printing
Solve
51
Print Even Numbers in a RangeUse a loop to collect the even numbers from 2 to 10 and print them on one line, ...
medium○ Not Started
Printing
Solve
52
Print a Multiplication StatementTwo numbers are given. Use a template literal to print a multiplication statemen...
medium○ Not Started
Printing
Solve
53
Print a Price with Two DecimalsA price is given as a number. Print it as a dollar amount with exactly two decim...
medium○ Not Started
Printing
Solve
54
Round to Two DecimalsA number with many decimals is given. Print it rounded to two decimal places. F...
medium○ Not Started
Printing
Solve
55
Join an Array with CommasAn array of numbers is given. Print its elements joined by a comma and a space. ...
medium○ Not Started
Printing
Solve
56
Print a Countdown on One LineUse a loop to print a countdown from 5 down to 1 on a single line, separated by ...
medium○ Not Started
Printing
Solve
57
Print a Right TriangleUse a loop and the .repeat() method to print a right triangle of stars with 4 ro...
medium○ Not Started
Printing
Solve
58
Print a Sentence from VariablesA name and a number of items are given. Use a template literal to print a senten...
medium○ Not Started
Printing
Solve