1. Home
  2. /
  3. Jsbin
  4. /
  5. JS Bin Random Number Generator

JS Bin Random Number Generator - Jsbin Typing CST Test

Loading…

JS Bin Random Number Generator — Jsbin Code

Generates a random number between 1 and 100 when button is clicked.

<!DOCTYPE html>
<html>
<head>
	<title>Random Number</title>
</head>
<body>
	<button id="btn">Generate</button>
	<p id="output"></p>

	<script>
		document.getElementById('btn').onclick = function() {
		document.getElementById('output').textContent = Math.floor(Math.random()*100)+1;
		};
	</script>
</body>
</html>

Jsbin Language Guide

JSBin is an online code editor focused on web development that allows users to write and test HTML, CSS, and JavaScript in real-time. It is designed for rapid prototyping and debugging of web code directly in the browser.

Primary Use Cases

  • ▸Rapid prototyping of HTML, CSS, and JavaScript
  • ▸Testing small code snippets and debugging
  • ▸Sharing live examples of web code
  • ▸Learning front-end development interactively
  • ▸Collaborating on small web projects via shared links

Notable Features

  • ▸Live preview of HTML, CSS, and JS code
  • ▸Real-time console for JavaScript output
  • ▸Shareable links for collaborative testing
  • ▸Supports multiple panels for HTML, CSS, and JS
  • ▸Embeddable code snippets for blogs or tutorials

Origin & Creator

JSBin was created by Remy Sharp in 2009 to provide a simple, accessible online platform for testing and sharing web code snippets.

Industrial Note

Widely used by web developers for prototyping and debugging front-end code. Not suitable for full-stack development or large-scale production projects.

More Jsbin Typing Exercises

Hello World in JS BinJS Bin Button Click ExampleJS Bin Input Echo ExampleJS Bin Color ChangerJS Bin Clock ExampleJS Bin Hide and ShowJS Bin List AdderJS Bin Simple CalculatorJS Bin Toggle Dark Mode

Practice Other Languages

CReactPythonC++RustTypeScriptKotlinPHPJavaC#RubyMqlCqlN1qlCypher