Organize projects and tasks with a clean UI — QuestBoard Project Manager

⚡ Plan • Prioritize • Track — no login, no backend.

QuestBoard Project Manager

LocalStorage keeps your data private. List & Kanban views, stats, and charts.

Open the App
Kanban, timelines, and charts — QuestBoard Project Manager

🧭 Single-user, offline & private — tasks, Kanban, charts.

QuestBoard — Manage Projects Fast

Built with Next.js & Bootstrap. Export/Import your data anytime.

Start Now
Convert Celsius to Fahrenheit

Convert Celsius to Fahrenheit

javascriptbeginnercoding-challengelogicmathtemperaturepractice

Challenge Convert a temperature from Celsius to Fahrenheit in JavaScript.

Write a function that takes a Celsius value and returns the Fahrenheit equivalent using the formula: F = C × 9/5 + 32

Complete code: function celsiusToFahrenheit(c) { return c * 9 / 5 + 32; } console.log(celsiusToFahrenheit(25));

Question: What should the console print for the input 25?

Multiple choice:

  1. 67
  2. 77
  3. 82
  4. 98

Tip: Mind operator precedence and return a number, not a string.