JavaScript Date not passed via props in react js [Now fixed]

  • Thread starter Thread starter shivajikobardan
  • Start date Start date
AI Thread Summary
The discussion centers around a React application that displays subscription information. The main issue identified is a coding error where the date is not formatted correctly for display. The current output does not show the date at the top as intended. The solution proposed is to correct the method call from date.toISOString to date.toISOString(), ensuring the date is properly formatted and displayed first in the output. The application structure includes an App component that imports a Subscription component, which receives subscription data as props for rendering.
shivajikobardan
Messages
637
Reaction score
54
[CODE lang="javascript" title="App.js"]import './App.css';
import Subscription from './components/Subscription';
// import Myroutes from "./Myroutes.js";

function App() {
let subscriptions = [{ id: "1", date: new Date("2021", "3", "23"), title: "Monthly Subscription", amount: "125.60" },
{ id: "2", date: new Date("2020", "06", "28"), title: "Annual Subscription", amount: "1125.60" },
{ id: "1", date: new Date("2021", "09", "05"), title: "Quarterly Subscription", amount: "425.60" }]

return (
<>
<div className='App'>
<Subscription datePassed={subscriptions[0].date.toISOString} titlePassed={subscriptions[0].title} amountPassed={subscriptions[0].amount} />
<Subscription datePassed={subscriptions[1].date.toISOString} titlePassed={subscriptions[1].title} amountPassed={subscriptions[1].amount} />
<Subscription datePassed={subscriptions[2].date.toISOString} titlePassed={subscriptions[2].title} amountPassed={subscriptions[2].amount} />
</div>
</>
)
};

export default App;
[/CODE]

[CODE lang="javascript" title="Subscription.js component"]import React from 'react'
import "./Subscription.css"
function Subscription(props) {
return (
<>
<div>{props.datePassed}</div>
<h2 className="subscription-title">{props.titlePassed}</h2>
<div>{props.amountPassed}</div>
</>)
}

export default Subscription[/CODE]

Currrent Output that I'm getting:
1672147338777.png

Expected Output:

I need date to come at the top.
 
Technology news on Phys.org
FIXED:
date.toISOString should be date.toISOString()
 
  • Like
Likes jedishrfu and .Scott
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I have a quick questions. I am going through a book on C programming on my own. Afterwards, I plan to go through something call data structures and algorithms on my own also in C. I also need to learn C++, Matlab and for personal interest Haskell. For the two topic of data structures and algorithms, I understand there are standard ones across all programming languages. After learning it through C, what would be the biggest issue when trying to implement the same data...

Similar threads

Replies
2
Views
1K
Replies
8
Views
2K
Replies
2
Views
2K
Replies
5
Views
2K
Replies
10
Views
3K
Replies
32
Views
2K
Replies
5
Views
2K
Replies
2
Views
1K
Back
Top