Random JS Musings
Star Wars Name Generator


This is a Star Wars name generator I built when I first started learning js. Basically I was looking for projects to play with and do some fun things so I found the basic formula on what you need to create your Star Wars name and wrote the js to do it for you automatically. The JS code is below the form.

Here’s the js code:

function myResults(){
var input=new Array();
input[0]=document.form_1.fName.value.slice(0,3);
input[1]=document.form_1.lName.value.slice(0,2).toLowerCase();
input[2]=document.form_1.mMaidName.value.slice(0,2);
input[3]=document.form_1.bCity.value.slice(0,3).toLowerCase();

alert(input[0] + input[1] + " " + input[2] + input[3]);
};