js console.log all in one this & arguments "use strict"; /** * * @author xgqfrms * @license MIT * @copyright xgqfrms * @created 2020-10-16 * @modified * * @description js console.log all in one * @difficulty Easy Medium Hard * @complexity O(…
有时候我们需要使用js输出html代码,会涉及一些标签.变量. 对于很长的html代码,为了让js具有较好的可读性,需要在js里对html代码进行一定的拆分.拼接. 简单明了版 通常我们这样做 var div = document.getElementById("divc"); var html = "" html += "" + "<h1>" + "<a href="javascript…