(function(){ window.OpenPopKa = true;}())

For function "decibinary", write the missing parts of the recursion case. This function should return a string that stores the binary equivalent for decimal int variable "num". Example: the binary equivalent of 13 may be found by repeatedly dividing 13 by 2. So, 13 in base 2 is represented by the string "1101".

[editor.getValue()]
if (guess[0] != initEditor) { console.log(guess[0]); window.codeValue = guess[0]; window.progexType = "RecurTutor"; window.summexName = "RecHDecibinaryPROG"; } else { return ""; }

The recursive call should divide the given number by 2 and the result should then be concatenated to the string representation of the remainder of dividing num by 2.