SoFunction
Updated on 2025-04-03

JS simple method to implement String to Date

This article describes the simple implementation of JS to Date. Share it for your reference, as follows:

<script>
var s=["2008-8-1","2009/9/2","10/3/2010"];
for(var i=0;i<;i++){
  var d = string2date(s[i]);
  var year = ();
  var month = ()+1;
  var date = ();
  var dateStr = year+" Year "+month+" moon "+ date+ " day";
  alert("Original String:"+s[i]+"\nTurn directly:"+ new Date(s[i])+"\nTurn by method:"+dateStr);
}
function string2date(str){
  return new Date(((/-/g,  "/")));
}
</script>

For more information about JavaScript, readers who are interested in reading this site's special topic:Summary of JavaScript search algorithm skills》、《Summary of JavaScript animation special effects and techniques》、《Summary of JavaScript Errors and Debugging Skills》、《Summary of JavaScript data structure and algorithm techniques》、《JavaScript traversal algorithm and skills summary"and"Summary of JavaScript mathematical operations usage

I hope this article will be helpful to everyone's JavaScript programming.