Skip to content

Conversation

@dan-codacy
Copy link
Contributor

No description provided.

};

var car = function (a, b, c) {
console.log("value of the second c:", c);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Codacy has a fix for the issue: Strings must use singlequote.

Suggested change
console.log("value of the second c:", c);
console.log('value of the second c:', c);

};

var dar = function (a, b, c, d) {
console.log("value of the second d:", d);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Codacy has a fix for the issue: Strings must use singlequote.

Suggested change
console.log("value of the second d:", d);
console.log('value of the second d:', d);

};

var car = function (a, b, c) {
console.log("value of the second c:", c);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Codacy has a fix for the issue: Strings must use singlequote.

Suggested change
console.log("value of the second c:", c);
console.log('value of the second c:', c);

};

var dar = function (a, b, c, d) {
console.log("value of the second d:", d);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Codacy has a fix for the issue: Strings must use singlequote.

Suggested change
console.log("value of the second d:", d);
console.log('value of the second d:', d);

};

var car = function (a, b, c) {
console.log("value of the second c:", c);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Codacy has a fix for the issue: Strings must use singlequote.

Suggested change
console.log("value of the second c:", c);
console.log('value of the second c:', c);

};

var dar = function (a, b, c, d) {
console.log("value of the second d:", d);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Codacy has a fix for the issue: Strings must use singlequote.

Suggested change
console.log("value of the second d:", d);
console.log('value of the second d:', d);

@@ -1,8 +1,17 @@
function foo1(a, b, a) {
function foo1(a, b, c) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Codacy has a fix for the issue: Missing JSDoc comment.

Suggested change
function foo1(a, b, c) {
/**

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants