coding-convention tag

3 questions


1 answers
81 views
0
Which is better, using multiple overlapping functions or using them one by one?

id = camelCase(toParse( upper(id) ));Is this better?id = upper(id);id = toParse(id);id = camelCase(id);Is this better?I only did three right now. On the premise that the overlap can increase further a...


2 answers
106 views
0
What are the criteria for creating methods in the class?

Is it better to write a method and function from the top and have an api function that has a lower stack as you go down? Conversely, is it better to write an important api function first and put it at...


1 answers
119 views
0
You want to create a coding guide in-house. Please share a website or document for reference ^^

You want to create a coding guide in-house. Please share a website or document for reference ^^Thank you.

1 years ago

© 2024 OneMinuteCode. All rights reserved.