This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var CracklePop = function(){ | |
| for(var num = 1; num <= 100; num ++) { | |
| if(num%3 == 0 && num%5 == 0) { | |
| console.log("CracklePop"); | |
| } else if (num%5 == 0) { | |
| console.log("Pop"); | |
| } else if (num%3 == 0){ | |
| console.log("Crackle"); | |
| } else { | |
| console.log(num); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Code of Conduct | |
| Hacks/Hackers Berlin is committed to providing a welcoming and harassment-free environment for participants of all races, gender and trans statuses, sexual orientations, physical abilities, physical appearances, and beliefs. We’ve written this code of conduct not because we expect bad behaviour from our community—which, in our experience, is overwhelmingly kind and civil—but because we believe a clear code of conduct is one necessary part of building a respectful community space. | |
| Participants of Hacks/Hackers Berlin agree to: | |
| Be considerate in speech and actions, and actively seek to acknowledge and respect the boundaries of fellow attendees. Refrain from demeaning, discriminatory, or harassing behaviour and speech. Harassment includes, but is not limited to: deliberate intimidation; stalking; unwanted photography or recording; sustained or wilful disruption of talks or other events; inappropriate physical contact; use of sexual or discriminatory imagery, comments, or jokes; and unwelcom |