Differences in Javascript functions
There are several ways to define functions in Javascript, and there are differences in the way they work, so I have summarized them here to help you organize them in your own mind.There […]
Convert to snakecase when browser request, convert to camelcase when browser receive
It is often the case that variables are declared in CamelCase in the front-end environment, while they are described in SnakeCase on the server side.To absorb this discrepancy, this section explains how to […]