Can the automatic completion of VScode be modified?

at present, when writing js, with VSCode, every time you use the function completion feature, you will complete the following code: you have to delete the parameters yourself every time. Can you change the parameter to empty?
or is there any other good way?

 function name(params) {
        
    }

Aug.05,2021

Yes, write your own code snippet
View-> Command panel-> Type configure user code snippet -> Type javascript to configure your own code snippet in the open configuration file, for example:

   

Menu