我可以在Visual Studio(2017)中获得JavaScript的基本语法检查吗?

时间:2019-03-27 05:55:03

标签: javascript visual-studio-2017

因此,今天下午早些时候,这个小宝石花了我多得多的时间。 (这有助于我在凌晨2:00左右发布此查询。)

const sortedDataset = { "labels": [], "data": [], "backgroundColors": [], "borderColors": [] }

newIndices.forEach((value, index) => {
    sortedDataSet.labels[index] = combinedSet.labels[value]
    sortedDataSet.data[index] = combinedSet.data[value]
    sortedDataSet.backgroundColors[index] = $scope.getBackgroundColor(index)
    sortedDataSet.borderColors[index] = $scope.getBorderColor(index)
})

我将直接讲到它-没有sortedDataSet这样的变量;其名为sortedDataset。您可能会认为熟练的IDE应该比我发现它所需的精力少得多。

有什么方法可以配置Visual Studio为我做标记?这似乎是倒退了一大步-我觉得这是1993年,在我学会使用Option Explicit之前,我正在VB3中进行编码。感谢您的建议。

0 个答案:

没有答案