w3resource

CoffeeScript function: Returns a passed string with letters in alphabetical order

CoffeeScript Function : Exercise-11 with Solution

Write a CoffeeScript function that returns a passed string with letters in alphabetical order.

Example string : 'webmaster'
Expected Output : 'abeemrstw'

Note: Assume punctuation and numbers symbols are not included in the passed string.

HTML Code :

<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<script src="//jashkenas.github.io/coffee-script/extras/coffee-script.js"></script>
<title>Returns a passed string with letters in alphabetical order</title>
</head>
<body>
  
</body>
</html>

CoffeeScript Code :

alphabet_order = (str) ->
  str.split('').sort().join ''

console.log alphabet_order('webmaster')

Sample Output:

"abeemrstw"

Live Demo :

See the Pen coffeescript-exercise-11 by w3resource (@w3resource) on CodePen.


Improve this sample solution and post your code through Disqus.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/coffeescript-exercises/coffeescript-exercise-11.php