Search:
Type: Posts; User: purrup
Search :
Search took 0.01 seconds.
i made the changes and it worked
this is the code
var verb = prompt("What is your verb");
var last = verb.substring(verb.length-2)
var first = verb.substring(0,verb.length-2)
var type =...
this does not work
what is wrong with it
making a program that conjugates Spanish verbs
var pronoun = prompt("What is your pronoun(put yo, tu, el, etc.)");
var verb = prompt("What is your...
on the last else it says missing ; before statement
what does that mean
I removed the ;s
but it still doesn't work
are them any more bugs?
var pronoun = prompt("What is your pronoun(put yo, tu, el, etc.)");
var verb = prompt("What is your verb");
i need help
i am making a program that conjugates spanish words
this is only the beginning part that determines what the last two letters is(those are important)
when i put only the "if" part it...