pastebin
Add a new paste
View all pastes
Change language
Dutch
English
French
Russian
menu
URL Shortener
Multiple URL shortener
browser info
Whois IP and domain lookup
Capture a Website screenshot
Disqus Chatroom
Registration
pastebin
Paste Search Dynamic
Recent pastes
vids
7 minutes ago
jailb
8 minutes ago
person check
5 hours ago
node add
5 hours ago
ZonedDateTime
5 hours ago
nid
5 hours ago
lowestCars highestCars
5 hours ago
Entity id
5 hours ago
binkey
5 hours ago
node access
5 hours ago
first letter ippercase
function
first_letter_uppercase
(
)
{
var
myStr =
"the quick brown fox"
;
var
str = myStr.
split
(
" "
)
;
for
(
var
i =
0
; i < str.
length
; i++
)
{
console.
log
(
str
[
i
]
[
0
]
.
toUpperCase
(
)
)
;
}
}
first_letter_uppercase
(
)
;
Parsed in 0.002 seconds