V School | Better Humans, Better Outcomes

Warmup - Roman Numerals

Write a JavaScript function that Convert an integer into a Roman Numeral in javaScript.

Warmup - Greatest Common Divisor

Write a JavaScript function to find the GCD (greatest common divisor) of more than 2 integers. Test Data: console.log(gcd_more_than_two_numbers([3,15,27])); console.log(gcd_more_than_two_numbers([5,10,15,25])); Output : 3 5

Rock The Vote

You are going to create a website that allows users to post and upvote or downvote political issues. Requirements: * Web page that shows a list of political issues * Each item will have a title * Each item will have a description * Each item can be upvoted or downvoted * Items will be

Convert Decimal

Write a JavaScript function to convert a decimal number to binary, hexadecimal or octal number. Example outputs: console.log(dec_to_bho(654321,'B')); "10011111101111110001" console.log(dec_to_bho(654321,'H')); "9fbf1" console.log(dec_to_bho(654321,'O')); "2375761"

Draw a Circle

Write a JavaScript program to draw a circle: Expected Output:

V School | Better Humans, Better Outcomes © 2026