()
| 878 | } |
| 879 | |
| 880 | const getCoursePraise = function () { |
| 881 | const praise = [ |
| 882 | { |
| 883 | quote: 'The kids love it.', |
| 884 | source: 'Leo Joseph Tran, Athlos Leadership Academy', |
| 885 | }, |
| 886 | { |
| 887 | quote: 'My students have been using the site for a couple of weeks and they love it.', |
| 888 | source: 'Scott Hatfield, Computer Applications Teacher, School Technology Coordinator, Eastside Middle School', |
| 889 | }, |
| 890 | { |
| 891 | quote: 'Thanks for the captivating site. My eighth graders love it.', |
| 892 | source: 'Janet Cook, Ansbach Middle/High School', |
| 893 | }, |
| 894 | { |
| 895 | quote: 'My students have started working on CodeCombat and love it! I love that they are learning coding and problem solving skills without them even knowing it!!', |
| 896 | source: 'Kristin Huff, Special Education Teacher, Webb City School District', |
| 897 | }, |
| 898 | { |
| 899 | quote: 'I recently introduced Code Combat to a few of my fifth graders and they are loving it!', |
| 900 | source: 'Shauna Hamman, Fifth Grade Teacher, Four Peaks Elementary School', |
| 901 | }, |
| 902 | { |
| 903 | quote: "Overall I think it's a fantastic service. Variables, arrays, loops, all covered in very fun and imaginative ways. Every kid who has tried it is a fan.", |
| 904 | source: 'Aibinder Andrew, Technology Teacher', |
| 905 | }, |
| 906 | { |
| 907 | quote: 'I love what you have created. The kids are so engaged.', |
| 908 | source: 'Desmond Smith, 4KS Academy', |
| 909 | }, |
| 910 | { |
| 911 | quote: 'My students love the website and I hope on having content structured around it in the near future.', |
| 912 | source: 'Michael Leonard, Science Teacher, Clearwater Central Catholic High School', |
| 913 | }, |
| 914 | ] |
| 915 | return praise[_.random(0, praise.length - 1)] |
| 916 | } |
| 917 | |
| 918 | const getPrepaidCodeAmount = function (price, users, months) { |
| 919 | if (price == null) { price = 0 } |
nothing calls this directly
no outgoing calls
no test coverage detected