サンプルコードは次のとおりです。
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<button onclick="myFunction();">Click!</button>
<script type="text/javascript">
function myFunction() {
var text = "";
if (text)
{
alert(text);
}
else
{
alert("There's no text!");
}
}
</script>
</body>
</html>
if (text)とif (text != "")の間に違いがあるのだろうか?
前もって感謝します!
マイク