You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rd4.js 363B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. let $ = window.$j || $
  3. fn_list = [
  4. function function_name(argument) {
  5. // body...
  6. clog("fn1")
  7. },
  8. function function_name(argument) {
  9. // body...
  10. clog("fn2")
  11. },
  12. ]
  13. fn_obj = {
  14. function_name(argument) {
  15. // body...
  16. clog("fn1.")
  17. },
  18. function_name(argument) {
  19. // body...
  20. clog("fn2.")
  21. },
  22. }
  23. window.fn_list = fn_list
  24. window.fn_obj = fn_obj
  25. }