CJCoding With Joseph
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
76
Print a Boolean ValueA boolean prints as the word `true` or `false`. The variable `isLoggedIn` holds ...
easy○ Not Started
Printing
Solve
77
Print a Tab-Separated PairPrint the two words `Name` and `Age` separated by a single tab character (`\t`) ...
easy○ Not Started
Printing
Solve
78
Print the First CharacterThe variable `word` holds the string `"Hello"`. Print only its first character s...
easy○ Not Started
Printing
Solve
79
Print the Last Array ElementThe array `nums` holds `[10, 20, 30]`. Print its last element so the output is e...
easy○ Not Started
Printing
Solve
80
Print a Number SquaredThe variable `n` holds `6`. Print its square (`n` multiplied by itself) so the o...
easy○ Not Started
Printing
Solve
81
Print the RemainderUse the remainder (modulo) operator `%` to print the remainder of `17` divided b...
easy○ Not Started
Printing
Solve
82
Print the Larger NumberUse `Math.max()` to print the larger of the two numbers `8` and `3` so the outpu...
easy○ Not Started
Printing
Solve
83
Print an Absolute ValueUse `Math.abs()` to print the absolute value of `-7` so the output is exactly: ...
easy○ Not Started
Printing
Solve
84
Print the Type of a ValueUse the `typeof` operator to print the type of the value `42` so the output is e...
easy○ Not Started
Printing
Solve
85
Print a Full NameThe variables `first` and `last` hold `"Ada"` and `"Lovelace"`. Print them as a ...
easy○ Not Started
Printing
Solve
86
Print a SubstringThe variable `text` holds `"JavaScript"`. Use `slice()` to print only the first ...
easy○ Not Started
Printing
Solve
87
Print Two Lines with One LogUsing a SINGLE `console.log()` call, print two lines by including a newline (`\n...
easy○ Not Started
Printing
Solve
88
Print a Rounded-Down NumberUse `Math.floor()` to round `4.9` DOWN to the nearest whole number and print it ...
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
89
Print a Reversed StringThe variable `s` holds `"hello"`. Print the string reversed so the output is exa...
medium○ Not Started
Printing
Solve
90
Print the Sum of an ArrayThe array `nums` holds `[1, 2, 3, 4]`. Add all of its numbers together and print...
medium○ Not Started
Printing
Solve
91
Print a Capitalized WordThe variable `w` holds `"banana"`. Print the word with only its first letter cap...
medium○ Not Started
Printing
Solve
92
Print Numbers Separated by SpacesThe array `nums` holds `[1, 2, 3, 4, 5]`. Print all of its numbers on ONE line s...
medium○ Not Started
Printing
Solve
93
Print the Word CountThe variable `sentence` holds `"the quick brown fox"`. Print how many words it c...
medium○ Not Started
Printing
Solve
94
Print a Zero-Padded NumberThe variable `n` holds `7`. Print it as a three-digit string padded with leading...
medium○ Not Started
Printing
Solve
95
Print Odd Numbers to NinePrint each odd number from `1` to `9`, one per line, so the output is exactly: ...
medium○ Not Started
Printing
Solve
96
Print a Temperature ConversionThe variable `c` holds `25` (degrees Celsius). Convert it to Fahrenheit using th...
medium○ Not Started
Printing
Solve
97
Print the Minimum of an ArrayThe array `nums` holds `[4, 2, 8, 1]`. Print its smallest value so the output is...
medium○ Not Started
Printing
Solve
98
Print a Times TablePrint the 3 times table from `1` to `5`, one equation per line, using the format...
hard○ Not Started
Printing
Solve
99
Print a Square of StarsThe variable `size` holds `3`. Print a solid square made of the `*` character th...
hard○ Not Started
Printing
Solve
100
Print a FactorialThe variable `n` holds `5`. Compute `n` factorial (the product `1 * 2 * 3 * 4 * ...
hard○ Not Started
Printing
Solve