亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vscode中console.log的兩種快速寫法分別是什么

發布時間:2021-11-08 12:49:14 來源:億速云 閱讀:254 作者:柒染 欄目:開發技術

今天就跟大家聊聊有關vscode中console.log的兩種快速寫法分別是什么,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

(一)方法一:直接在script標簽中提前定義,僅適用于該html文件!

 let add = function(a,b){
 	return a + b;
 };
 console.log(add(20,300));
 
 const { ['log']:C } = console;
 C(add(20,300));

(二)方法二:按tab鍵快速生成console.log,且光標在()內部,再次按tab鍵光標自動跳轉到下一行!
1、打開vscode編輯器,選擇文件->首選項->用戶片段,輸入javascript.json并按下enter進入。
初次使用我們會發現一段被注釋的代碼如下:

{
	// Place your snippets for javascript here. Each snippet is defined under a snippet name and has a prefix, body and 
	// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
	// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the 
	// same ids are connected.
	// Example:
	// "Print to console": {
	// 	"prefix": "log",
	// 	"body": [
	// 		"console.log('$1');",
	// 		"$2"
	// 	],
	// 	"description": "Log output to console"
	// }
}

2、解除Example以下的區間代碼如下,其中部分參數意義如下:
①prefix:代碼快捷鍵的入口,在這里我們根據個人習慣進行設置即可,如我設置的cl,那么配合tab健就可以直接生成console.log;
②body表示代碼主體:
$1表示生成代碼快速生成后后光標首次出現的位置
$2寫在"console.log('$1');"下面,表示在快速生成console.log()后,代碼后會空出一行,并且再次按tab鍵時,光標會跳轉到$2(空出的一行)的位置

{
	// Place your snippets for javascript here. Each snippet is defined under a snippet name and has a prefix, body and 
	// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
	// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the 
	// same ids are connected.
	// Example:
	"Print to console": {
		"prefix": "cl",
		"body": [
			"console.log('$1');",
			"$2"
		],
		"description": "Log output to console"
	}
}

看完上述內容,你們對vscode中console.log的兩種快速寫法分別是什么有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

馆陶县| 常山县| 汾阳市| 柳河县| 全南县| 巴东县| 杭锦旗| 清苑县| 竹北市| 黑河市| 景东| 中西区| 龙游县| 怀来县| 兰溪市| 新泰市| 高阳县| 冷水江市| 卢湾区| 龙山县| 肇州县| 卓资县| 外汇| 渭源县| 金溪县| 五莲县| 康平县| 宕昌县| 宜城市| 容城县| 南康市| 深水埗区| 清水县| 泸州市| 黑河市| 崇文区| 乐业县| 铁岭县| 汝州市| 买车| 阜城县|