This app generates a person's Wu-Tang clan through a questionnaire. The answers are then calculated and sent to the server to send back the name based off of a library held in the server.
Tech used: HTML, CSS, JavaScript, Node.js
Every response is the user gives is given a numerical value and passed into a variable that correlates to the users' first name or last name score. The numbers are then passed to the server, where they are modulo'd against the arrays of first and last names. The response given is based off of the index of the modulated score and sent back to the user.
I learned about some nifty string and array methods such as
.charCodeAt() which is used to return a numerical value based off of the utf-16 encoding system. I also got practice in using a server to store and process information based off of the specific request the user makes.
