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.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join