Welcome to Dream.In.Code
Click Here
Getting Help is Easy!

Join 117,157 Programmers for FREE! Ask your question and get quick answers from experts. There are 2,323 online right now! We've got more than 500 tutorials and 2,000 snippets. Join and find out why Dream.In.Code is the #1 programming help community on the internet! Registration is fast and FREE... Join Now!



javascript code

 
Reply to this topicStart new topic

javascript code, mystring in java script code

yykou
post 13 Jun, 2008 - 03:32 PM
Post #1


New D.I.C Head

*
Joined: 13 Jun, 2008
Posts: 1

CODE
var forename
         var surname

window.prompt('Please enter your forename', '');
window.prompt('Please enter your surname', '');

document.write('Your password is' + forename.length -1 + '<BR>)




which code to find out the last character??

Thanks!!

User is offlineProfile CardPM

Go to the top of the page


spearfish
post 13 Jun, 2008 - 04:06 PM
Post #2


Monkey in Training

Group Icon
Joined: 10 Mar, 2008
Posts: 719



Dream Kudos: 225
My Contributions


What are you wondering about?

There's an error on the last line, though:
document.write('Your password is' + forename.length -1 + '<BR>)

should be
document.write('Your password is' + forename.length -1 + '<BR>')
User is offlineProfile CardPM

Go to the top of the page

atdrago
post 14 Jun, 2008 - 05:47 AM
Post #3


New D.I.C Head

*
Joined: 8 Jun, 2008
Posts: 27



Thanked 2 times
My Contributions


Okay, first you need to set your variables equal to what is returned from the prompt, like this:
javascript
var forename = window.prompt('Please enter your forename', '');
var surname = window.prompt('Please enter your surname', '');

Then you can use the substring method to get the last character:
javascript
var lastLetter = forename.substring(forename.length-1);


I hope that helped.
User is offlineProfile CardPM

Go to the top of the page

Fast ReplyReply to this topicStart new topic
Time is now: 10/6/08 10:48AM

Live Help!

Tutorials

Programming

Web Development

Reference Sheets

Code Snippets

Bye Bye Ads

Free DIC T-Shirt

T-Shirt Example

Related Sites

Monthly Drawing

Thumb Drive

Partners

Top Contributors

Top 10 Kudos This Month