Replace ``js with ``javascript

This commit is contained in:
krahets
2023-02-08 04:27:55 +08:00
parent 0407cc720c
commit 22b7d65d20
27 changed files with 127 additions and 92 deletions
+3 -3
View File
@@ -79,7 +79,7 @@ comments: true
=== "JavaScript"
```js title="binary_search_tree.js"
```javascript title="binary_search_tree.js"
/* 查找结点 */
function search(num) {
let cur = root;
@@ -244,7 +244,7 @@ comments: true
=== "JavaScript"
```js title="binary_search_tree.js"
```javascript title="binary_search_tree.js"
/* 插入结点 */
function insert(num) {
// 若树为空,直接提前返回
@@ -517,7 +517,7 @@ comments: true
=== "JavaScript"
```js title="binary_search_tree.js"
```javascript title="binary_search_tree.js"
/* 删除结点 */
function remove(num) {
// 若树为空,直接提前返回