How do you program differently in dynamic languages?

前端 未结 15 1557
南笙
南笙 2021-02-01 03:37

How would someone who really knows how to take advantage of dynamic programming languages approach programming differently than someone working in a static language?

I

15条回答
  •  佛祖请我去吃肉
    2021-02-01 04:17

    Dynamic languages are capable of executing code which was created at run-time. This is very dangerous if malicious code is injected. But very powerful if you can sanitize the environment.

    I think Javascript people do this by executing JSON files.

提交回复
热议问题