Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var text = "";
- for (var stotici = 1; stotici < 10; stotici++) {
- text += stotici;
- for (var desetici = 0; desetici < 10; desetici++){
- if (stotici === desetici) {
- continue;
- }
- text += desetici
- }
- for (var edinici = 0; edinici < 10; edinici++){
- if (edinici === desetici || edinici === stotici) {
- continue;
- }
- text += edinici
- }
- text += text + ";";
- }
- console.log(text);
Advertisement
Add Comment
Please, Sign In to add comment