/    Sign up×
Community /Pin to ProfileBookmark

Need to know how to print the alphabet in upper and lower case letters at the same time I am new at this so please help

to post a comment
JavaScript

7 Comments(s)

Copy linkTweet thisAlerts:
@Declan1991Sep 26.2007 — I'm afraid I don't quite know what you want to do.
Copy linkTweet thisAlerts:
@cysticauthorSep 26.2007 — I need to print the letters of the alphabet upper and lower case letters using one char
Copy linkTweet thisAlerts:
@cysticauthorSep 26.2007 — please any help will be greatly appriciated thanks.
Copy linkTweet thisAlerts:
@cysticauthorSep 27.2007 — Kind of need this by tomorrow
Copy linkTweet thisAlerts:
@Arty_EffemSep 27.2007 — please any help will be greatly appriciated thanks.[/QUOTE]Your requirement is incomprehensible from the description you have given.

Please give a clear, unambiguous description of what you need to do.

If this is an assignment, just transcribe it verbatim.
Copy linkTweet thisAlerts:
@Wisest_GuySep 27.2007 — [CODE]
<SCRIPT LANGUAGE="JavaScript>
var Alphabet = "";
for(var I = 0,char = "A";I < 26;I++){
Alphabet += char;
char = char.charCodeAt(0) + 1;
char = unescape("%"+(((char & 0xF0) >> 4).toString(16))+((char & 0xF).toString(16)));
}
document.write(Alphabet+"n"+(Alphabet.toLowerCase()));
</SCRIPT>
[/CODE]
Copy linkTweet thisAlerts:
@cysticauthorSep 27.2007 — List the letters of the alphabet A-z lower and upper case letters like so

ABCD...

abcd...

of up and down hope this helps
×

Success!

Help @cystic spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.18,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...