Underscore _.map 函数结果在一个段落中

Underscore _.map function results in a paragraph

我正在调用一个具有函数的下划线 _.map,但我想要一个段落中的结果。我怎样才能实现它?

<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js"></script>
</head>
<body>
<p> </P>
<script>
_.map([1,2,3],function(e){return e*3;});
</script>
</body>
</html>

结果必须打印在我的段落中。

<html>
    <head>
        <script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js"></script>
    </head>
    <body>
        <p><script>
            _.map([1,2,3],function(e){document.write(e*3);});
        </script></p>
    </body>
</html>

更新以适应评论请求

<html>
    <head>
        <script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js"></script>
    </head>
    <body>
        <p id="target"></p>
        <script>
            _.map([1,2,3],function(e){
                document.getElementById('target').innerHTML=(e*3);
            });
        </script>
    </body>
</html>