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
- Host: GitHub
- URL: https://github.com/rt75272/javascript_website
- Owner: rt75272
- Created: 2023-11-02T22:03:19.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-09T21:31:50.000Z (over 1 year ago)
- Last Synced: 2025-01-19T18:47:25.783Z (5 months ago)
- Topics: api, css, html, javascript, js, makefile, markdown, nodejs, programming-languages, starwars-api
- Language: HTML
- Homepage:
- Size: 2.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.5Running 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: falseUsing JS typeof() function...
variable x is a number with the value of 42
variable y is a number with the value of 42.5Running cmd_args.js....
Numbers of arguments found: 4
42Running Ashlyn_Examples.js...
11Running Sunny_Basic_Example.js...
The selected digit is odd
The selected digit is evenRunning Sunny_Advanced_Example.js...
Total Vowels: 2
Total Digits: 3
Total Lowercase letters: 4
Length of word: 11$ exit
```