jjzjj

const-ness

全部标签

javascript - 如何在 ESLint 中对齐 const 缩进?

我正在使用ESLint使我的JavaScript代码风格保持一致。我最喜欢的缩进级别是4,我希望我的声明样式是这样的:function(){leta=1,bbb=2;constcc=3,ddd=4;}但是有一个问题,因为indent每个结构的规则都有一个数字,它是基本缩进的乘积。如果我将我的基本缩进设置为4,我似乎无法对齐常量。如果我将规则设置为:"indent":["error",4,{"VariableDeclarator":{"const":1}}],正确的对齐方式是4个空格:constcc=3,ddd=4;如果我将规则设置为2:"indent":["error",4,{"Var

javascript - const 在 Edge 15 开发者工具中不起作用

我正在运行Edge/15.15063。'CanIUse'saysconstshouldwork.运行:constx='woo'然后:console.log(x)返回'x'isundefined截图:为什么const不起作用? 最佳答案 我怀疑Edge控制台在其幕后使用了with语句likeotherimplementationsdid.这将解释var和evenfunctiondeclarations被提升到全局范围之外,但是let和const将被锁定到block范围内:with(…){constx='woo'}//nextinput

javascript - 初学者的 : const definition in Redux confusing

在这个Redux入门类(class)中https://egghead.io/lessons/javascript-redux-store-methods-getstate-dispatch-and-subscribe?series=getting-started-with-redux,主持人说下面两行是一样的const{createStore}=Redux;varcreateStore=Redux.createStore;我刚刚搜索了ES6const文档,它并没有完全回答我的问题,这两行如何相同? 最佳答案 这与const(这只是定

javascript - ES6 双箭头参数(即 const update = x => y => { } )

这个问题在这里已经有了答案:javascriptes6doublearrowfunctions(2个答案)关闭5年前。下面代码中的双箭头参数是什么意思?constupdate=x=>y=>{//Dosomethingwithxandy}与下面的相比有何不同?constupdate=(x,y)=>{//Dosomethingwithxandy}谢谢!

javascript - const 已经在 ES6 开关 block 中声明

这个问题在这里已经有了答案:ErrorDuplicateConstDeclarationinSwitchCaseStatement(6个答案)关闭3年前。考虑文件sample.es6switch(1){case1:constfoo=1;break;case2:constfoo=2;break;}如果我用Node运行它,我得到了$node--versionv4.2.11$nodesample.es6/tmp/sample.es6:6constfoo=2;^SyntaxError:Identifier'foo'hasalreadybeendeclaredatObject.(/tmp/sam

javascript - Const must be initialized error in Microsoft Edge in for...of loop

我正在使用const和JavaScript的新forof循环结构。它在Chrome中运行良好,但在MSEdge中,以下代码会引发错误:for(constaof[1,2,3])console.log(a);Error:Constmustbeinitialized同样,在chrome中工作正常,边缘抛出错误。我猜它期望const变量有一个初始化值,但这就是for的全部工作,不是吗?MDN说edge支持循环,所以浏览器支持不是问题。 最佳答案 根据https://kangax.github.io/compat-table/es6,"con

javascript - 为什么 `const` 值在 `for...in` 和 `for...of` 循环内部发生变化?

Constantsareblock-scoped,muchlikevariablesdefinedusingtheletstatement.Thevalueofaconstantcannotchangethroughre-assignment,anditcan'tberedeclared.根据MDNconstant的值不能通过重新赋值改变,也不能被重新声明,所以里面for...in和for...of的工作情况如何?constdata=['A','B','C','D'];//Hereconstkeyischangedfor(constkeyindata){console.log('key

javascript - Visual Studio 任务运行程序 "SyntaxError: Use of const in strict mode."

将Win10Pro/VS2015与“网站”项目(不是asp.net,基本网站)一起使用当尝试保存/重新加载gulpfile.js时,我收到错误消息(来自TaskRunnerExplorer/输出)SyntaxError:Useofconstinstrictmode.在目前的情况下,它因“gulp-changed”而窒息我已查看可用的答案和评论:SyntaxError:UseofconstinstrictmodeSyntaxError:Useofconstinstrictmode?我已经将我的Node版本更新到最新版本:6.10.30我已经清理了缓存(npmcacheclean-f)我使

JavaScript const 关键字

JavaScript中的const关键字是否创建对不可变数据结构的不可变引用?[我假设JavaScript中存在不可变数据结构。]对于string它似乎是这样做的:varx="asdf";constconstantX=x;alert("beforemutation:"+constantX);x="mutated"alert("aftermutation:"+constantX);输出:beforemutation:asdfaftermutation:asdfhttp://jsfiddle.net/hVJ2a/ 最佳答案 首先你不是在

javascript - 使用 async 和 await with export const

我无法完成这项工作...它说:await是一个保留字。是的,当然是……而且我想使用它:)怎么了?exportconstloginWithToken=async()=>{returndispatch=>{dispatch({type:SESSION_LOGIN_IN_PROGRESS,payload:true})letstoredData=awaitReadFromLocalDB('user')console.log(storedData)if(!storedData){invalidToken(null,dispatch)}else{storedData=JSON.parse(stor