javascript how to sort variables by user input
<!DOCTYPE html>
<html>
<body>
<p>Type x, y, zand click "Sort" to get them sorted</p>
<button onclick="sort()">sort</button>
<p id="answer"></p>
<script>
var x = window.prompt("x=?");
var y = window.prompt("y=?");
var z = window.prompt("z=?");
var zmienne = [x,y,z];
document.getElementById("answer").innerHTML = zmienne;
function sortuj() {
zmienne.sort();
document.getElementById("answer").innerHTML = zmienne;
}
</script>
</body>
</html>
Also in JavaScript:
- jquery animation
- angular injector.create example
- ExpressionChangedAfterItHasBeenCheckedError: Expression has changed after it was checked. Previous value: 'ngIf: [object Object]'. Current value: 'ngIf: true'.
- how to send array to js file in wplms
- arrow functions javascript
- find base url in javascript
- javascript switch range
- display none in jquery
- loop though json object in javascript
- Caesars Cipher javascript
- reach to each cell in 2d array javascript
- how to check if all inputs are not empty with javascript
- drupal 8 render node programmatically
- what does json.parse do
- ternary operator javascript
- c# newtonsoft serialize dictionary to json
- interpolation react
- get user time using timezone javascript
- ... operator javascript
- Function in JavaScript that can be called only once
- js do every x seconds
- filter in js
- js insert in array
- chart js rotating the x axis labels