javascript small() method


  Translation results:

英[smɔ:l] 美[smɔl]

adj.Small; embarrassed; low-level, despicable; subtle, weak

adv.小地; Despicably

n.Small part, waist; trivial things; person of low status; short person

Comparative: smaller Superlative: smallest

javascript small() methodsyntax

Function: Display the string as a small font.

Syntax: stringObject.small()

javascript small() methodexample

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>

<script type="text/javascript">

    var str="Hello world!"
    document.write(str.small())

</script>

</body>
</html>

Run instance »

Click the "Run instance" button to view the online instance

Popular Recommendations

Home

Videos

Q&A