JavaScript初心者でNode.jsを勉強中です。
http://localhost:3000/tip/200/20
と入力されたら、百分率表記にして"10"と画面に表示させるようにしたいです。
res.sendが書き方が間違っていると思うのですが、アドバイス頂けないでしょうか。
JavaScript
1// expressを読み込めるようにしている。 2const express = require('express'); 3// express()をappに格納する。 4const app = express(); 5 6app.get('/tip/:total/:tipPercentage', (req, res) => { 7 const Percentage = (num, per) => { 8 return (num/100)*per; 9 } 10 let total = parseInt(req.params.total) 11 let tipPercentage = parseInt(req.params.tipPercentage); 12 res.send(`${Percentage}(${total}, ${tipPercentage})`) 13}) 14 15app.listen(3000, () => console.log('hello i am listening on port 3000')) 16
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/10 14:57