Pure Programmer
Blue Matrix


Cluster Map

Project: Password Phrase

One way to come up with a password is to think of a long phrase that is easy to remember, then take the first letter of each word in the phrase to compose the password. Write a program that defines a string constant with the phrase, then prints out the password composed from the first letter of each word in the phrase.

Output
$ node PasswordPhrase.js Password is Fsasya

Solution