1console.log('\u002D'); 2console.log('\x2D'); 3 4function fib(n) { 5 if (n <= 1) return n; 6 return fib(n - 1) + fib(n - 2); 7} 8 9 10