Home arrow JavaScript arrow Page 3 - JavaScript Objects: More on String Methods
JAVASCRIPT

JavaScript Objects: More on String Methods


Welcome back to my series covering JavaScript Objects. In the last issue we discussed the Object String properties and some of the Object String methods. In this episode we will continue our discussion of the Object String methods and how to use them.

Author Info:
By: James Payne
Rating: 5 stars5 stars5 stars5 stars5 stars / 4
January 22, 2008
TABLE OF CONTENTS:
  1. · JavaScript Objects: More on String Methods
  2. · The CharAt() Method
  3. · Working with the ConCat() Method
  4. · The FontColor() Method
  5. · FromCharCode() Method
  6. · The LastIndexOf() Method

print this article
SEARCH DEVARTICLES

TOOLS YOU CAN USE

advertisement
JavaScript Objects: More on String Methods - Working with the ConCat() Method
(Page 3 of 6 )

The ConCat() method allows you to join two or more strings together. Say you have a program with a first name, last name, and a title. You might want to join the two names together. This is how you can do so:


<html>

<body>


<script type="text/javascript">


var firstname="Leroy "

var secondname="Brown"

var title="Baddest Man in the Whole Damn Town"

var linebreak=("<br />")

document.write(firstname.concat(secondname))

document.write(linebreak)

document.write(title)

</script>


</body>

</html>

 

This would result in the following being displayed to the browser:

  Leroy Brown
  Baddest Man in the Whole Damn Town

Fixing It With the Fixed() Method

The Fixed() method allows you to create Teletype text, like so:


<html>

<body>


<script type="text/javascript">


var news="James Payne wins his third Nobel Prize for Literature!"


document.write("<p>This just in: " + news.fixed() + "</p>")

</script>


</body>

</html>

This would result in the following:

  This just in: James Payne wins his third Nobel Prize for Literature!


blog comments powered by Disqus
JAVASCRIPT ARTICLES

- More Top jQuery Tutorials for Beginners
- More Top jQuery Plugins for Menus
- Top jQuery Tutorials for Beginners
- New UI Framework and SDK for JavaScript Rele...
- JavaScript OpenPGP Tool, Node.js 0.6.3 Avail...
- Yahoo Releases Cocktails Language and Develo...
- Customizing jQuery Slideshows: Dynamic Contr...
- Customizing jQuery Slideshows: the animate()...
- Customizing jQuery Slideshows: slideUp() and...
- Customizing jQuery Slideshows: hide() and sh...
- Web Workers: Performing Calculations in Para...
- More Top JavaScript Frameworks and Libraries
- More Dynamic jQuery Styling Techniques
- The Top JavaScript Libraries
- The Top JavaScript Frameworks

Dev Articles Forums 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Weekly Newsletter
 
Developer Updates  
Free Website Content 
Contact Us 
Site Map 
Privacy Policy 
Support 



© 2003-2012 by Developer Shed. All rights reserved. DS Cluster 4 - Follow our Sitemap
Popular Web Development Topics
All Web Development Tutorials