What is the shortcut for commenting out multiple lines?

Is there any shortcuts to comment out multiple lines of code in JavaScript? I know the shortcut for the single line is ctrl+/

Hi @itsxxtx

You can use

/*

turn code into comment

*/

Happy coding

Thank you, but what I was asking about is if there is a keyboard shortcut…

Select the lines you want to turn into a comment, then apply the short cut from your post.

I’ve tried that, but it doesn’t work…
This is how it turns out:

// lines
// to be
// commented

CTRL + K followed by C

So hold CTRL, press K, then press C

1 Like

A little late, and I suppose it depends on the editor. But for VS Code/fCC editor, the keyboard shortcut for toggle block comment is:

Windows: Shift + Alt + A
Mac: Shift + Option + A

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.