Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 479 Bytes

js-basic.md

File metadata and controls

22 lines (15 loc) · 479 Bytes

Javascript: Basic concepts

  1. Declare

  2. Write Javascript that shows 100 times on the console:

    I feeel good. Na-ra na-ra na-ra na!
    
  3. Write a NodeJS command line program that shows the arguments that you passed:

    $ node show-args.js first second " third "
    Argument[0] = "first"
    Argument[1] = "second"
    Argument[2] = " third "
    
  4. Write a function that receives an integer from 1 to 1000 and it converts it to a Roman Numeral.