欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

01—Hbuilder—js—除法、取余数

程序员文章站 2022-06-28 19:07:15
哐一下,你就知道&l....
	<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title>哐一下,你就知道</title>
		<link rel="shortcut icon" href="//www.baidu.com/favicon.ico" type="image/x-icon"/>
	</head>
	<body>
	</body>
</html>
<script type="text/javascript">
	var a = prompt("今年多大了?")
	console.log(a);
	/*判断变量a的类型*/
	console.log(typeof a); 
	/*除法*/
	console.log(6/3.14);
	/*取余数*/
	console.log(3%4);
	console.log(5%4);
</script>

本文地址:https://blog.csdn.net/weixin_45515187/article/details/109249991

相关标签: JavaScript js