An open API service indexing awesome lists of open source software.

https://github.com/rt75272/javascript_website

Prgramming Languages(CS 354) JavaScript informational website
https://github.com/rt75272/javascript_website

api css html javascript js makefile markdown nodejs programming-languages starwars-api

Last synced: 3 months ago
JSON representation

Prgramming Languages(CS 354) JavaScript informational website

Awesome Lists containing this project

README

        

# [JavaScript Website](https://cs354-team-website.onrender.com/)
Prgramming Languages(CS 354) JavaScript informational website

_To run several of the basic examples via bash powered terminal:_
```sh
$ make
chmod +x fire.sh
sh fire.sh
Running basic_math_example.js...

Printing outputs...
1 + 2 = 3
1 - 2 = -1
1 * 2 = 2
1 / 2 = 0.5

Running types_example.js...

Checking for numbers with isNaN function...
Whitespace is not a number?: false
Whitespace is considered a number???: true
var w is not a number with the value hello world: true
var x is not a number with the value 42: false
var y is not a number with the value 42: false
var z is not a number with the value 42: false

Using JS typeof() function...
variable x is a number with the value of 42
variable y is a number with the value of 42.5

Running cmd_args.js....
Numbers of arguments found: 4
42

Running Ashlyn_Examples.js...
11

Running Sunny_Basic_Example.js...
The selected digit is odd
The selected digit is even

Running Sunny_Advanced_Example.js...
Total Vowels: 2
Total Digits: 3
Total Lowercase letters: 4
Length of word: 11

$ exit
```