function
funMake() {
// length
var
str =
'Hello World!'
;
document.write(str.length +
'<br />'
);
// concat()
str0 =
'Hello'
str1 =
' '
str2 =
'World'
str3 =
'!'
res =
new
String().concat(str0, str1, str2, str3);
document.write(res +
// toUpperCase()
'hello world!'
str = str.toUpperCase();
document.write(str +
// toLowerCase()
'HELLO WORLD!'
str = str.toLowerCase();
// charAt()
'Lugansk'
i = str.charAt(3);
document.write(i +
// indexOf()
'I work by a software developer in Lugansk. I live in Lugansk'
i = str.indexOf(
// lastIndexOf()
i = str.lastIndexOf(
// search()
i = str.search(
// replace()
str = str.replace(
,
'New York'
// slice()
str = str.slice(0, 30);
// substring()
str = str.substring(0, 30);
// split()
'1,2,3,4,5,6,7'
ara = str.split(
','
for
(
i=0; i<ara.length; i++) {
document.write(ara[i] +
}
document.write(
// match()
'I live in Ukraine. I work by a software developer and I read a special books about JavaScript.'
pattern = /I/;
query = str.match(pattern);
i=0; i<str.length; i++) {
if
(query == str[i]) {
document.write(query +
// big()
document.write(str.big() +
// small()
document.write(str.small() +
// bold()
document.write(str.bold() +
// italics()
document.write(str.italics() +
// strike()
document.write(str.strike() +
// sub()
val =
'Привет Мир!'
document.write(val + str.sub() +
// sup()
document.write(val + str.sup() +
// link(url)
'mail.ru'
document.write(str.link(
'http://mail.ru'
) +
// fontsize(size);
document.write(str.fontsize(26) +
// fontcolor(color)
document.write(str.fontcolor(
'#F00'
));
<!DOCTYPE html>
<
html
>
head
meta
charset
=
"utf-8"
/>
title
>New Page</
script
src
"js/script.js"
></
</
body
funMake();