- HTML - Hyper Text Markup Language
- CSS - Cascading Style Sheets
- REpresentational State Transfer
- Architectural pattern for developing HTTP APIs.
- REST provides a standardized way to interact with HTTP based APIs.
<?php namespace Hotelier\FormValidation; | |
use Illuminate\Validation\Factory as LaravelValidator; | |
abstract class Validator { | |
/** | |
* Laravel's validator instance | |
* | |
* @var Validator |
<?xml version="1.0" encoding="UTF-8"?> | |
<phpunit backupGlobals="false" | |
backupStaticAttributes="false" | |
bootstrap="bootstrap/autoload.php" | |
colors="true" | |
convertErrorsToExceptions="true" | |
convertNoticesToExceptions="true" | |
convertWarningsToExceptions="true" | |
processIsolation="false" | |
stopOnFailure="false" |
function HttpUrlBuilder(url) { | |
if (typeof url !== "string") { | |
throw new TypeError(); | |
} | |
this.url = url; | |
this.cleanUrl(); | |
} | |
HttpUrlBuilder.prototype.cleanUrl = function() { |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
<script src="https://unpkg.com/@reactivex/rxjs@5.0.3/dist/global/Rx.js"></script> | |
</head> | |
<body> |
name
of type String
using var
or let
TIMEOUT
with a value of 1000
user
object with the following properties
firstName
-> String
lastName
-> String
age
-> Number
fullName
-> function
that returns the join (concatenation) of firstName
and lastName
array
that has the names of your family membersconsole.log
every item in the family members array (from above) using a for
loopforEach
method on array
.class Node { | |
constructor (value, priority) { | |
this.value = value; | |
this.priority = priority; | |
} | |
} | |
class PriorityQueue { | |
constructor () { | |
this.heap = [null]; |
package com.example.demo; | |
import javax.persistence.*; | |
@Entity | |
@Table(name = "books") | |
public class Book { | |
@Id | |
int id; | |
public Book() { |
import org.springframework.data.jpa.repository.JpaRepository; | |
import org.springframework.stereotype.Repository; | |
@Repository | |
public interface BookRepository extends JpaRepository<Book, int> {} |
package com.example.demo; | |
import javax.persistence.*; | |
@Entity | |
@Table(name = "customers") | |
public class Customer { | |
@Id | |
int id; | |