code2021-l
Version:
前端自定义工具
19 lines (18 loc) • 528 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>3种基本排序_测试</title>
</head>
<body>
<script src="../../../dist/190719-utils.js"></script>
<script>
const arr = [2, 6, 1, 7, 3, 9]
// console.log(aUtils.bubbleSort(arr))
// console.log(aUtils.selectSort(arr))
console.log(aUtils.insertSort(arr))
</script>
</body>
</html>