myModule.js 417 B

12345678910111213141516
  1. function myModule(){
  2. //私有数据
  3. var msg = 'my money'
  4. //操作数据的函数
  5. function doSomething(){
  6. console.log('doSomething()'+msg.toUpperCase())
  7. }
  8. function doOtherthing(){
  9. console.log('doOtherthing()'+msg.toLowerCase())
  10. }
  11. //向外暴露对象(给外部使用的方法)
  12. return {
  13. doSomething : doSomething,
  14. doOtherthing : doOtherthing
  15. }
  16. }