Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

CoffeeScript function: Reverses a number

CoffeeScript Function : Exercise-9 with Solution

Write a CoffeeScript function that reverses a number.

Example x = 58973;
Expected Output : 37985

HTML Code :

<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<script src="//jashkenas.github.io/coffee-script/extras/coffee-script.js"></script>
<title>Reverses a number</title>
</head>
<body>
  
</body>
</html>

CoffeeScript Code :

reverse_a_number = (n) ->
  n = n + ''
  n.split('').reverse().join ''

console.log reverse_a_number(58973)

Sample Output:

"37985"

Live Demo :

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


Improve this sample solution and post your code through Disqus.